From ce4b373c44ab76ea3177c8d4a32ca65630bd55a7 Mon Sep 17 00:00:00 2001 From: VG Date: Wed, 9 Nov 2016 00:32:25 +0100 Subject: make apt install automatic and without recommends --- rpi2-debian-stdkernel/make-rpi-debootstrap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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(): -- cgit v1.2.3