aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrpi2-debian-stdkernel/make-rpi-debootstrap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/rpi2-debian-stdkernel/make-rpi-debootstrap.py b/rpi2-debian-stdkernel/make-rpi-debootstrap.py
index 286cdcf..548b4f2 100755
--- a/rpi2-debian-stdkernel/make-rpi-debootstrap.py
+++ b/rpi2-debian-stdkernel/make-rpi-debootstrap.py
@@ -155,7 +155,8 @@ def system_customization(rootdir):
run(['chroot', rootdir, '/usr/bin/qemu-arm-static',
'/usr/bin/apt', 'update'], check=True)
run(['chroot', rootdir, '/usr/bin/qemu-arm-static',
- '/usr/bin/apt', 'install', 'linux-image-raspi2'], check=True)
+ '/usr/bin/apt', 'install', '--no-install-recommends',
+ '-yq', 'linux-image-raspi2'], check=True)
def main():