bea81bd234
Adds: 1. grub-efi package mappings 2. efi-64 support 3. default (openrc) arm64 profile 4. systemd arm64 profile Cleans up the keywords and use flags in 02-gentoo-02-flags. Most stuff was stablized. Also cleaned up some formatting for the if statements. Enables less trusted overlays (up to the end user to verify). in 10-gentoo-image I cleaned up some bash lint things as well. using && instead of -a and avoiding $? Change-Id: I3dffe1aab4bbdc4946a9bf2269bf0cde49529a4e
36 lines
1.6 KiB
Bash
Executable File
36 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# get the directories in order
|
|
mkdir -p /etc/portage/profile
|
|
mkdir -p /etc/portage/package.accept_keywords
|
|
if [[ -f /etc/portage/package.keywords ]]; then mv /etc/portage/package.keywords /etc/portage/package.accept_keywords/prebuilt-1; fi
|
|
mkdir -p /etc/portage/package.mask
|
|
mkdir -p /etc/portage/package.unmask
|
|
mkdir -p /etc/portage/package.use
|
|
|
|
# needed in order to install pip packages as root
|
|
echo 'dev-python/pip vanilla' >> /etc/portage/package.use/pip
|
|
# needed to create disk images
|
|
echo 'sys-fs/lvm2 -thin' >> /etc/portage/package.use/grub
|
|
echo 'sys-boot/grub device-mapper' >> /etc/portage/package.use/grub
|
|
echo 'sys-boot/grub grub_platforms_efi-64' >> /etc/portage/package.use/grub # always enable efi-64
|
|
if [[ 'x86_64' == "${ARCH}" ]]; then echo 'sys-boot/grub grub_platforms_pc' >> /etc/portage/package.use/grub; fi # bios support for bios systems
|
|
|
|
# needed to install static kernel
|
|
if [[ 'x86_64' == "${ARCH}" ]]; then echo 'sys-kernel/gentoo-kernel-bin ~amd64' >> /etc/portage/package.accept_keywords/kernel; fi
|
|
if [[ 'arm64' == "${ARCH}" ]]; then echo 'sys-kernel/gentoo-kernel-bin ~arm64' >> /etc/portage/package.accept_keywords/kernel; fi
|
|
|
|
# musl only valid for amd64 for now
|
|
if [[ "${GENTOO_PROFILE}" == *"musl"* ]]; then
|
|
echo "dev-vcs/git -gpg" >> /etc/portage/package.use/musl # gpg doesn't build on musl profiles
|
|
echo "~sys-block/open-iscsi-2.0.878 ~amd64" >> /etc/portage/package.accept_keywords/musl
|
|
echo "=sys-block/open-isns-0.97 ~amd64" >> /etc/portage/package.accept_keywords/musl
|
|
echo "sys-libs/pam cracklib" >> /etc/portage/package.use/musl
|
|
fi
|