aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2021-07-04 04:31:52 +0200
committerSven Gothel <[email protected]>2021-07-04 04:31:52 +0200
commit5c638e9280d9f469ec97a92111e563722ba2734b (patch)
tree61082c627e787e92641e1fbeba93222935f2c28b /scripts
parente8d2a1900999d604a9db244145eaef44fe2bdf05 (diff)
qemu-debootstrap is deprecated, using debootstrap directly
Diffstat (limited to 'scripts')
-rw-r--r--scripts/common8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/common b/scripts/common
index 7a0093a..f2d6d28 100644
--- a/scripts/common
+++ b/scripts/common
@@ -9,9 +9,11 @@ bootstrap(){
#export http_proxy=${APT_PROXY}
- if [ "$(dpkg --print-architecture)" != "armhf" ] && [ "$(dpkg --print-architecture)" != "arm64" ]; then
- BOOTSTRAP_CMD=qemu-debootstrap
- fi
+ # qemu-debootstrap is deprecated. Please use regular debootstrap directly
+ #
+ # if [ "$(dpkg --print-architecture)" != "armhf" ] && [ "$(dpkg --print-architecture)" != "arm64" ]; then
+ # BOOTSTRAP_CMD=qemu-debootstrap
+ # fi
BOOTSTRAP_ARGS+=(--arch arm64)
BOOTSTRAP_ARGS+=(--include gnupg)