The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
FLOP:Boot-Update Redesign
- Created on
- 2013/12/03
- Original Author(s)
- Drobbins
- Current Maintainer(s)
- Error: No field named "Full_name" found for any of the specified database tables.
- Status
- Approved
Funtoo Linux Optimization Proposal: Boot-Update Redesign
Introduction
The goals in rewriting boot-update are as follows:
- Refactor code
- Add UEFI support
- Simplify Kernel Layout
Refactor Code
Boot-update could use some code simplification. This will be accomplished by using a simpler design using templates for text generation, and also simplifying the kernel layout (described below.)
UEFI Support
Boot-update currently doesn't support UEFI booting directly, and must be manually configured via the UEFI Install Guide. Part of this proposal involves adding UEFI support to boot-update.
Simplify Kernel Layout
Currently, all kernels and initramfs images are installed into /boot directly and typically have the names kernel-SUFFIX or bzImage-SUFFIX and initramfs-SUFFIX. Boot-update needs to find the kernel and initramfs images and associate them with each other, and then parse the filename for version information.
This is not an optimal way to organize kernels. A much cleaner approach would be to have a /boot/kernels/VERSION/ directory that contains files initramfs.gz, bzImage, System.map, etc. without any suffix. boot-update would then scan /boot/kernels and make all directory names available as kernels that could be booted. This simplifies kernel management as everything related to a particular kernel is organized in its own sub-directory.
In addition, special text files could exist in the /boot/kernels/VERSION/ directory, such as label, which could contain a regular text name for the kernel that appears in the menu. A /boot/kernels/VERSION/grub.cfg could allow users to manually specify a grub.cfg section that is used to boot this kernel, which boot-update would use if found. touching /boot/kernels/VERSION/default would allow a user to set the default kernel for booting. These types of changes would reduce the complexity contained in the /etc/boot.conf file, as more configuration data would be stored on the filesystem itself.