diff options
Diffstat (limited to 'rpi2-debian-stdkernel')
-rwxr-xr-x | rpi2-debian-stdkernel/make-rpi-debootstrap.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rpi2-debian-stdkernel/make-rpi-debootstrap.py b/rpi2-debian-stdkernel/make-rpi-debootstrap.py index b09399e..968a12e 100755 --- a/rpi2-debian-stdkernel/make-rpi-debootstrap.py +++ b/rpi2-debian-stdkernel/make-rpi-debootstrap.py @@ -159,6 +159,7 @@ def main(): reexec_root() rootdir = 'debootstrapdir' os.makedirs(rootdir, mode=0o755) + print('debootstrapping...') run([ 'qemu-debootstrap', '--arch=' + parameters['arch'], @@ -168,6 +169,7 @@ def main(): rootdir, parameters['mirror'], ], check=True) + print('doing system customization on debootstrapped system...') system_customization(rootdir) |