aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-11-09 00:32:25 +0100
committerVG <vg@devys.org>2016-11-09 00:32:25 +0100
commitce4b373c44ab76ea3177c8d4a32ca65630bd55a7 (patch)
treef8a99377dbb2b66f809ddf04ec75a3c356bbf97b
parent20835466e5f1c08af2f8a94a8d009521b3fa2290 (diff)
downloaddebootstrap-scripts-ce4b373c44ab76ea3177c8d4a32ca65630bd55a7.tar.gz
debootstrap-scripts-ce4b373c44ab76ea3177c8d4a32ca65630bd55a7.tar.bz2
debootstrap-scripts-ce4b373c44ab76ea3177c8d4a32ca65630bd55a7.zip
make apt install automatic and without recommends
-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():