Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions scripts/BuildScripts/FilesystemScripts/buildFilesystem.sh
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,13 @@ fi
export DEBIAN_FRONTEND=noninteractive
# need ca-certs, gnupg, openssl to handle https apt links and key adding for deb.prawnos.com
printf -v debootstrap_debs_install_joined '%s,' "${debootstrap_debs_install[@]}"
qemu-debootstrap --arch $TARGET_ARCH $DEBIAN_SUITE \
qemu-debootstrap --arch $TARGET_ARCH \
--include ${debootstrap_debs_install_joined%,} \
--keyring=$build_resources_apt/debian-archive-keyring.gpg \
--cache-dir=$PRAWNOS_BUILD/debootstrap-apt-cache/ \
$DEBIAN_SUITE \
$outmnt \
$PRAWNOS_DEBOOTSTRAP_MIRROR \
--cache-dir=$PRAWNOS_BUILD/debootstrap-apt-cache/
$PRAWNOS_DEBOOTSTRAP_MIRROR

chroot $outmnt passwd -d root
echo -n PrawnOS > $outmnt/etc/hostname
Expand Down