Lines Matching +full:0 +full:- +full:9 +full:a +full:- +full:z
17 if [ -z $FAKEROOT ]; then
23 if [ -z "${DEB_ARCH}" ]; then
29 if [ -z "${DEB_TYPE}" ]; then
30 echo "Please set DEB_TYPE to a Debian archive name (e.g. testing)" >&2
36 if [ -z "${DEB_VARIANT}" ]; then
40 if [ -z "${DEB_URL}" ]; then
46 # - DEBOOTSTRAP_DIR pointing at a development checkout
47 # - PATH for the debootstrap script (installed)
53 if [ -z $DEBOOTSTRAP_DIR ]; then
56 if [ -z $DEBOOTSTRAP ]; then
60 … INSTALLED_VERSION=$(${DEBOOTSTRAP} --version | sed 's/debootstrap \([0-9\.]*\)[^0-9\.]*.*/\1/')
62 | sort -t . -n -k 1,1 -k 2,2 -k 3,3 -C ; then
68 DEBOOTSTRAP_SOURCE=https://salsa.debian.org/installer-team/debootstrap.git
76 if [ ! -f $DEBOOTSTRAP ]; then
85 if [ -n "${DEB_KEYRING}" ]; then
86 DEBOOTSTRAP="${DEBOOTSTRAP} --keyring=${DEB_KEYRING}"
93 if [ ! -e $BINFMT_DIR ]; then
94 echo "binfmt_misc needs enabling for a QEMU bootstrap to work" >&2
100 QEMU=qemu-i386
103 QEMU=qemu-arm
106 QEMU=qemu-aarch64
109 QEMU=qemu-ppc
112 QEMU=qemu-ppc64le
115 QEMU=qemu-s390x
118 QEMU=qemu-${DEB_ARCH}
121 if [ ! -e "${BINFMT_DIR}/$QEMU" ]; then
127 echo "Building a rootfs using ${FAKEROOT} and ${DEBOOTSTRAP} ${DEB_ARCH}/${DEB_TYPE}"
129 ${FAKEROOT} ${DEBOOTSTRAP} --variant=$DEB_VARIANT --foreign --arch=$DEB_ARCH $DEB_TYPE . $DEB_URL |…
130 exit 0