diff options
author | Sven Gothel <[email protected]> | 2021-08-05 14:24:00 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-08-05 14:24:00 +0200 |
commit | aa81e7a4446a5c3a37049b1a93ab84c869774286 (patch) | |
tree | e4193065761da506fc2ab06e4ad427962e7e7609 /scripts/03-build-debian_deb11_amd64-ro-rescue.cfg | |
parent | 46854faaf61d9061623502633a96f63c8dfc3ca4 (diff) |
Rename config files: Add '_deb11' to cfg name and resulting IMG_NAME; Add a 'raspi_deb10_armhf' cfg
Diffstat (limited to 'scripts/03-build-debian_deb11_amd64-ro-rescue.cfg')
-rw-r--r-- | scripts/03-build-debian_deb11_amd64-ro-rescue.cfg | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/scripts/03-build-debian_deb11_amd64-ro-rescue.cfg b/scripts/03-build-debian_deb11_amd64-ro-rescue.cfg new file mode 100644 index 0000000..d5b332c --- /dev/null +++ b/scripts/03-build-debian_deb11_amd64-ro-rescue.cfg @@ -0,0 +1,47 @@ +#! /bin/bash + +export TARGET_RASPI="0" +export TARGET_ARCH="amd64" + +export RELEASE=bullseye +# export RELEASE=buster + +# Produce a read-only rootfs +export ROOTFS_RO=1 +# export REDUCED_FOOTPRINT=1 + +# export APT_PROXY=http://jordan:3142 + +export CUSTOM_NAME="DebAmd64Rescue" +export CUSTOM_VERSION="1.2-ro" + +export PI_GEN="pi-gen (custom branch)" + +export IMG_NAME="${CUSTOM_NAME}-${CUSTOM_VERSION}-deb11-${TARGET_ARCH}" +export WORK_DIR="/data/${CUSTOM_NAME}-${CUSTOM_VERSION}-deb11-${TARGET_ARCH}-work" +export IMG_FILENAME=${IMG_NAME} + +export DEPLOY_DIR=/data/diskimages +export DEPLOY_ZIP=0 + +#export USE_QEMU=1 + +export TARGET_HOSTNAME=deb11amd64 + +export LOCALE_DEFAULT=en_US.UTF-8 +export KEYBOARD_KEYMAP=us +export KEYBOARD_LAYOUT="English (US)" +export TIMEZONE_DEFAULT="Europe/Berlin" + +export FIRST_USER_NAME="pi" +export FIRST_USER_PASS="pi" +export ENABLE_SSH=1 +# export PUBKEY_SSH_FIRST_USER="ssh-rsa long-number my@machine" +# export PUBKEY_ONLY_SSH=1 + +export STAGE_LIST="stage0 stage1 stage2 stage3a stage3b_lxde stage_rescue" +#export SKIP_STAGE_LIST="stage0 stage1 stage2 stage3a stage3b_lxde stage_rescue" + +#export SKIP_IMAGES_LIST="stage2 stage3a stage3b_lxde stage_rescue" +export SKIP_IMAGES_LIST="stage2 stage3a stage3b_lxde" + |