aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-11-06 22:04:50 +0100
committerVG <vg@devys.org>2016-11-06 22:04:50 +0100
commit3a4ca058a6c2fbbfa5b03c0188e06cfe2c3d018f (patch)
tree5ebd98853d9e8c179ea5a88524ed0c0d120692e3
parentbc6d4568678f40832dbe6094dd0c72463d3fd609 (diff)
downloaddebootstrap-scripts-3a4ca058a6c2fbbfa5b03c0188e06cfe2c3d018f.tar.gz
debootstrap-scripts-3a4ca058a6c2fbbfa5b03c0188e06cfe2c3d018f.tar.bz2
debootstrap-scripts-3a4ca058a6c2fbbfa5b03c0188e06cfe2c3d018f.zip
print information about steps
-rwxr-xr-xrpi2-debian-stdkernel/make-rpi-debootstrap.py2
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)