diff options
-rwxr-xr-x | rpi2-debian-stdkernel/make-rpi-debootstrap.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rpi2-debian-stdkernel/make-rpi-debootstrap.py b/rpi2-debian-stdkernel/make-rpi-debootstrap.py index ca0e65e..ce26727 100755 --- a/rpi2-debian-stdkernel/make-rpi-debootstrap.py +++ b/rpi2-debian-stdkernel/make-rpi-debootstrap.py @@ -151,10 +151,10 @@ def system_customization(rootdir): '{}.UTF-8'.format(locale) ], check=True) - run(['chroot', rootdir, '/usr/bin/qemu-arm-static', 'apt', 'update'], - check=True) - run(['chroot', rootdir, '/usr/bin/qemu-arm-static', 'apt', 'install' - 'linux-image-raspi2'], check=True) + 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) def main(): |