rename binary_loopback_cfg to binary_grub_cfg
when loopback support was introduced, it initially duplicated the code for generating a grub2 config, before the duplicated code was removed from the grub-pc script, effectively thus moving grub config generation to the loopback feature script. grub-efi support was added after this. this results in a misleading filename, since the `binary_loopback_cfg` script is essential for use of grub-pc|grub-efi, and actually only has a single line of code on top that's needed for adding actual loopback support on top. (when grub-pc and grub-efi are not used, the entire script is still needed for loopback support to work). so here we rename it to make better sense, and correct/clarify bits of documentation. Gbp-Dch: Short
This commit is contained in:
parent
3a523c3fc1
commit
a542d52141
|
@ -119,12 +119,14 @@ creates checksums (md5, sha1, and/or sha256) for live image content
|
|||
duplicates the chroot directory, to place a copy of what would be the completed live OS root filesystem to one side, allowing the original to continue to be used in executing certain parts of the remainder of the build process
|
||||
.IP "\fBlb binary_disk\fR(1)" 4
|
||||
creates disk information files to be added to live image
|
||||
.IP "\fBlb binary_grub_cfg\fR(1)" 4
|
||||
creates the config for grub-pc and grub-efi, and also enables loopback support (which depends upon it) in the live image
|
||||
.IP "\fBlb binary_grub-efi\fR(1)" 4
|
||||
installs grub2-efi into live image to provide image boot capability
|
||||
installs grub-efi (grub2 for EFI) into live image to provide image boot capability. It relies upon \fBlb binary_grub_cfg\fR to create the config.
|
||||
.IP "\fBlb binary_grub-legacy\fR(1)" 4
|
||||
installs grub into live image to provide image boot capability
|
||||
.IP "\fBlb binary_grub-pc\fR(1)" 4
|
||||
installs grub2 into live image to provide image boot capability
|
||||
installs grub-pc (grub2 for BIOS) into live image to provide image boot capability. It relies upon \fBlb binary_grub_cfg\fR to create the config.
|
||||
.IP "\fBlb binary_hdd\fR(1)" 4
|
||||
compiles the final live image into an HDD image file
|
||||
.IP "\fBlb binary_hooks\fR(1)" 4
|
||||
|
@ -137,8 +139,6 @@ compiles the final live image into an ISO file
|
|||
copies the linux\-image into the live image
|
||||
.IP "\fBlb binary_loadlin\fR(1)" 4
|
||||
bundles a copy of loadlin into the live image
|
||||
.IP "\fBlb binary_loopback_cfg\fR(1)" 4
|
||||
install loopback-cfg into the live image
|
||||
.IP "\fBlb binary_manifest\fR(1)" 4
|
||||
creates manifest of packages installed into live OS filesystem, and list of packages to be excluded by a persistence mechanism installing the live OS to disk
|
||||
.IP "\fBlb binary_memtest\fR(1)" 4
|
||||
|
|
|
@ -54,7 +54,7 @@ lb binary_linux-image "${@}"
|
|||
lb binary_memtest "${@}"
|
||||
lb binary_grub-legacy "${@}"
|
||||
lb binary_grub-pc "${@}"
|
||||
lb binary_loopback_cfg "${@}"
|
||||
lb binary_grub_cfg "${@}"
|
||||
lb binary_syslinux "${@}"
|
||||
lb binary_disk "${@}"
|
||||
lb binary_loadlin "${@}"
|
||||
|
|
|
@ -31,6 +31,8 @@ fi
|
|||
|
||||
Echo_message "Begin preparing Grub based EFI support..."
|
||||
|
||||
# NOTE: We rely on `binary_grub_cfg` to generate grub.cfg and other configuration files!
|
||||
|
||||
# Requiring stage file
|
||||
Require_stagefiles config bootstrap
|
||||
|
||||
|
@ -295,7 +297,5 @@ rm -rf chroot/grub-efi-temp-arm-efi
|
|||
rm -rf chroot/grub-efi-temp-cfg
|
||||
rm -rf chroot/grub-efi-temp
|
||||
|
||||
# We rely on: binary_loopback_cfg to generate grub.cfg and other configuration files
|
||||
|
||||
# Creating stage file
|
||||
Create_stagefile
|
||||
|
|
|
@ -31,6 +31,8 @@ fi
|
|||
|
||||
Echo_message "Begin installing grub-pc..."
|
||||
|
||||
# NOTE: We rely on `binary_grub_cfg` to generate grub.cfg and other configuration files!
|
||||
|
||||
# Requiring stage file
|
||||
Require_stagefiles config bootstrap
|
||||
|
||||
|
@ -71,8 +73,6 @@ then
|
|||
FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
|
||||
fi
|
||||
|
||||
# We rely on: binary_loopback_cfg to generate grub.cfg and other configuration files
|
||||
|
||||
# Copying grub
|
||||
cp ${FILES} binary/boot/grub/i386-pc
|
||||
|
||||
|
|
|
@ -15,17 +15,19 @@ set -e
|
|||
[ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="Installs loopback.cfg into binary"
|
||||
DESCRIPTION="Generates config for grub-pc and grub-efi, and installs loopback support"
|
||||
USAGE="${PROGRAM} [--force]"
|
||||
|
||||
# Processing arguments and configuration files
|
||||
Init_config_data "${@}"
|
||||
|
||||
# We avoid checking if we need to be running this bootloader
|
||||
# on purpose. The reason: You will always want to have
|
||||
# a loopback.cfg file
|
||||
# TODO: Add an option to be able to disable this file creation
|
||||
Echo_message "Begin installing loopback.cfg..."
|
||||
# NOTE: This creates the config used for both grub-pc and grub-efi.
|
||||
# It also installs loopback.cfg for looback support, which depends upon that
|
||||
# config. Since loopback support is added unconditionally, this script is
|
||||
# thus run unconditionally!
|
||||
# TODO: Add an option to allow disabling loopback.cfg creation? (and thus conditionally run the script)
|
||||
|
||||
Echo_message "Begin installing config for grub-pc and/or grub-pc, and loopback support..."
|
||||
|
||||
# Requiring stage file
|
||||
Require_stagefiles config bootstrap
|
||||
|
@ -280,6 +282,7 @@ sed -i \
|
|||
sed -i -e 's|//|/|g' "${_TARGET}"/*.cfg
|
||||
sed -i -e 's|\ $||g' "${_TARGET}"/*.cfg
|
||||
|
||||
# Add loopback support
|
||||
echo "source /boot/grub/grub.cfg" > "${_TARGET}"/loopback.cfg
|
||||
|
||||
# Creating stage file
|
Loading…
Reference in New Issue