diff options
author | Sven Gothel <[email protected]> | 2021-07-04 04:31:52 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-07-04 04:31:52 +0200 |
commit | 5c638e9280d9f469ec97a92111e563722ba2734b (patch) | |
tree | 61082c627e787e92641e1fbeba93222935f2c28b /scripts | |
parent | e8d2a1900999d604a9db244145eaef44fe2bdf05 (diff) |
qemu-debootstrap is deprecated, using debootstrap directly
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/common | 8 |
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) |