Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/next/external/extensions/grub.sh
Views: 3957
# This runs *after* user_config. Don't change anything not coming from other variables or meant to be configured by the user.1function extension_prepare_config__prepare_flash_kernel() {2# Extension configuration defaults.3export DISTRO_GENERIC_KERNEL=${DISTRO_GENERIC_KERNEL:-no} # if yes, does not build our own kernel, instead, uses generic one from distro4export UEFI_GRUB_TERMINAL="${UEFI_GRUB_TERMINAL:-serial console}" # 'serial' forces grub menu on serial console. empty to not include5export UEFI_GRUB_DISABLE_OS_PROBER="${UEFI_GRUB_DISABLE_OS_PROBER:-}" # 'true' will disable os-probing, useful for SD cards.6export UEFI_GRUB_DISTRO_NAME="${UEFI_GRUB_DISTRO_NAME:-Armbian}" # Will be used on grub menu display7export UEFI_GRUB_TIMEOUT=${UEFI_GRUB_TIMEOUT:-0} # Small timeout by default8export UEFI_ENABLE_BIOS_AMD64="${UEFI_ENABLE_BIOS_AMD64:-yes}" # Enable BIOS too if target is amd649export UEFI_EXPORT_KERNEL_INITRD="${UEFI_EXPORT_KERNEL_INITRD:-no}" # Export kernel and initrd for direct kernel boot "kexec"10# User config overrides.11export BOOTCONFIG="none" # To try and convince lib/ to not build or install u-boot.12unset BOOTSOURCE # To try and convince lib/ to not build or install u-boot.13export IMAGE_PARTITION_TABLE="gpt" # GPT partition table is essential for many UEFI-like implementations, eg Apple+Intel stuff.14export UEFISIZE=256 # in MiB - grub EFI is tiny - but some EFI BIOSes ignore small too small EFI partitions15export BOOTSIZE=0 # No separate /boot when using UEFI.16export CLOUD_INIT_CONFIG_LOCATION="${CLOUD_INIT_CONFIG_LOCATION:-/boot/efi}" # use /boot/efi for cloud-init as default when using Grub.17export EXTRA_BSP_NAME="${EXTRA_BSP_NAME}-grub" # Unique bsp name.18export UEFI_GRUB_TARGET_BIOS="" # Target for BIOS GRUB install, set to i386-pc when UEFI_ENABLE_BIOS_AMD64=yes and target is amd6419local uefi_packages="efibootmgr efivar cloud-initramfs-growroot" # Use growroot, add some efi-related packages20uefi_packages="os-prober grub-efi-${ARCH}-bin ${uefi_packages}" # This works for Ubuntu and Debian, by sheer luck; common for EFI and BIOS2122# BIOS-compatibility for amd6423if [[ "${ARCH}" == "amd64" ]]; then24export UEFI_GRUB_TARGET="x86_64-efi" # Default for x86_6425if [[ "${UEFI_ENABLE_BIOS_AMD64}" == "yes" ]]; then26export uefi_packages="${uefi_packages} grub-pc-bin grub-pc"27export UEFI_GRUB_TARGET_BIOS="i386-pc"28export BIOSSIZE=4 # 4 MiB BIOS partition29else30export uefi_packages="${uefi_packages} grub-efi-${ARCH}"31fi32fi3334[[ "${ARCH}" == "arm64" ]] && export uefi_packages="${uefi_packages} grub-efi-${ARCH}"35[[ "${ARCH}" == "arm64" ]] && export UEFI_GRUB_TARGET="arm64-efi" # Default for arm64-efi3637if [[ "${DISTRIBUTION}" == "Ubuntu" ]]; then38DISTRO_KERNEL_PACKAGES="linux-image-generic"39DISTRO_FIRMWARE_PACKAGES="linux-firmware"40elif [[ "${DISTRIBUTION}" == "Debian" ]]; then41DISTRO_KERNEL_PACKAGES="linux-image-${ARCH}"42DISTRO_FIRMWARE_PACKAGES="firmware-linux-free"43# Debian's prebuilt kernels dont support hvc0, hack.44if [[ "${SERIALCON}" == "hvc0" ]]; then45display_alert "Debian's kernels don't support hvc0, changing to ttyS0" "${DISTRIBUTION}" "wrn"46export SERIALCON="ttyS0"47fi48fi4950if [[ "${DISTRO_GENERIC_KERNEL}" == "yes" ]]; then51export VER="generic"52unset KERNELSOURCE # This should make Armbian skip most stuff. At least, I hacked it to.53export INSTALL_ARMBIAN_FIRMWARE=no # Should skip build and install of Armbian-firmware.54else55export KERNELDIR="linux-uefi-${LINUXFAMILY}" # Avoid sharing a source tree with others, until we know it's safe.56# Don't install anything. Armbian handles everything.57DISTRO_KERNEL_PACKAGES=""58DISTRO_FIRMWARE_PACKAGES=""59fi6061export PACKAGE_LIST_BOARD="${PACKAGE_LIST_BOARD} ${DISTRO_FIRMWARE_PACKAGES} ${DISTRO_KERNEL_PACKAGES} ${uefi_packages}"6263display_alert "Activating" "GRUB with SERIALCON=${SERIALCON}; timeout ${UEFI_GRUB_TIMEOUT}; BIOS=${UEFI_GRUB_TARGET_BIOS}" ""64}6566# @TODO: extract u-boot into an extension, so that core bsps don't have this stuff in there to begin with.67# @TODO: this code is duplicated in flash-kernel.sh extension, so another reason to refactor the root of the evil68post_family_tweaks_bsp__remove_uboot_grub() {69display_alert "Removing uboot from BSP" "${EXTENSION}" "info"70# Simply remove everything with 'uboot' or 'u-boot' in their filenames from the BSP package.71# shellcheck disable=SC2154 # $destination is the target dir of the bsp building function72find "$destination" -type f | grep -e "uboot" -e "u-boot" | xargs rm73}7475pre_umount_final_image__remove_uboot_initramfs_hook_grub() {76# even if BSP still contained this (cached .deb), make sure by removing from ${MOUNT}77[[ -f "$MOUNT"/etc/initramfs/post-update.d/99-uboot ]] && rm -v "$MOUNT"/etc/initramfs/post-update.d/99-uboot78}7980pre_umount_final_image__install_grub() {81configure_grub82local chroot_target=$MOUNT83display_alert "Installing bootloader" "GRUB" "info"8485# getting rid of the dtb package, if installed, is hard. for now just zap it, otherwise update-grub goes bananas86rm -rf "$MOUNT"/boot/dtb* || true8788# add config to disable os-prober, otherwise image will have the host's other OSes boot entries.89cat <<-grubCfgFragHostSide >>"${MOUNT}"/etc/default/grub.d/99-armbian-host-side.cfg90GRUB_DISABLE_OS_PROBER=true91grubCfgFragHostSide9293# Mount the chroot...94mount_chroot "$chroot_target/" # this already handles /boot/efi which is required for it to work.9596if [[ "${UEFI_GRUB_TARGET_BIOS}" != "" ]]; then97display_alert "Installing GRUB BIOS..." "${UEFI_GRUB_TARGET_BIOS} device ${LOOP}" ""98chroot "$chroot_target" /bin/bash -c "grub-install --verbose --target=${UEFI_GRUB_TARGET_BIOS} ${LOOP}" >>"$DEST"/"${LOG_SUBPATH}"/install.log 2>&1 || {99exit_with_error "${install_grub_cmdline} failed!"100}101fi102103local install_grub_cmdline="update-initramfs -c -k all && update-grub && grub-install --verbose --target=${UEFI_GRUB_TARGET} --no-nvram --removable" # nvram is global to the host, even across chroot. take care.104display_alert "Installing GRUB EFI..." "${UEFI_GRUB_TARGET}" ""105chroot "$chroot_target" /bin/bash -c "$install_grub_cmdline" >>"$DEST"/"${LOG_SUBPATH}"/install.log 2>&1 || {106exit_with_error "${install_grub_cmdline} failed!"107}108109# Remove host-side config.110rm -f "${MOUNT}"/etc/default/grub.d/99-armbian-host-side.cfg111112local root_uuid113root_uuid=$(blkid -s UUID -o value "${LOOP}p1") # get the uuid of the root partition, this has been transposed114115# Create /boot/efi/EFI/BOOT/grub.cfg (EFI/ESP) which will load /boot/grub/grub.cfg (in the rootfs, generated by update-grub)116cat <<-grubEfiCfg >"${MOUNT}"/boot/efi/EFI/BOOT/grub.cfg117search.fs_uuid ${root_uuid} root118set prefix=(\$root)'/boot/grub'119configfile \$prefix/grub.cfg120grubEfiCfg121122umount_chroot "$chroot_target/"123124}125126pre_umount_final_image__900_export_kernel_and_initramfs() {127if [[ "${UEFI_EXPORT_KERNEL_INITRD}" == "yes" ]]; then128display_alert "Exporting Kernel and Initrd for" "kexec" "info"129# this writes to ${DESTIMG} directly, since debootstrap.sh will move them later.130# capture the $MOUNT/boot/vmlinuz and initrd and send it out ${DESTIMG}131cp "$MOUNT"/boot/vmlinuz-* "${DESTIMG}/${version}.kernel"132cp "$MOUNT"/boot/initrd.img-* "${DESTIMG}/${version}.initrd"133fi134}135136configure_grub() {137display_alert "GRUB EFI kernel cmdline" "console=${SERIALCON} distro=${UEFI_GRUB_DISTRO_NAME} timeout=${UEFI_GRUB_TIMEOUT}" ""138139if [[ "_${SERIALCON}_" != "__" ]]; then140cat <<-grubCfgFrag >>"${MOUNT}"/etc/default/grub.d/98-armbian.cfg141GRUB_CMDLINE_LINUX_DEFAULT="console=${SERIALCON}" # extra Kernel cmdline is configured here142grubCfgFrag143fi144145cat <<-grubCfgFrag >>"${MOUNT}"/etc/default/grub.d/98-armbian.cfg146GRUB_TIMEOUT_STYLE=menu # Show the menu with Kernel options (Armbian or -generic)...147GRUB_TIMEOUT=${UEFI_GRUB_TIMEOUT} # ... for ${UEFI_GRUB_TIMEOUT} seconds, then boot the Armbian default.148GRUB_DISTRIBUTOR="${UEFI_GRUB_DISTRO_NAME}" # On GRUB menu will show up as "Armbian GNU/Linux" (will show up in some UEFI BIOS boot menu (F8?) as "armbian", not on others)149grubCfgFrag150151if [[ "a${UEFI_GRUB_DISABLE_OS_PROBER}" != "a" ]]; then152cat <<-grubCfgFragHostSide >>"${MOUNT}"/etc/default/grub.d/98-armbian.cfg153GRUB_DISABLE_OS_PROBER=${UEFI_GRUB_DISABLE_OS_PROBER}154grubCfgFragHostSide155fi156157if [[ "a${UEFI_GRUB_TERMINAL}" != "a" ]]; then158cat <<-grubCfgFragTerminal >>"${MOUNT}"/etc/default/grub.d/98-armbian.cfg159GRUB_TERMINAL="${UEFI_GRUB_TERMINAL}"160grubCfgFragTerminal161fi162}163164165