diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2018-03-11 22:48:17 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2018-04-07 22:31:45 -0400 |
commit | 6519ab6ddccf6804efb16548bef4e47ece735015 (patch) | |
tree | 46dbd823dedef9f68abb005b539394c9b4eddd76 /projects/grub | |
parent | 4701bb7731d747bd4d6e293ed58adaea2b3c16c8 (diff) | |
download | librebootfr-6519ab6ddccf6804efb16548bef4e47ece735015.tar.gz librebootfr-6519ab6ddccf6804efb16548bef4e47ece735015.zip |
Include modules from modules-minimal in GRUB image
Diffstat (limited to 'projects/grub')
-rw-r--r-- | projects/grub/configs/bios/modules-minimal | 2 | ||||
-rw-r--r-- | projects/grub/configs/coreboot/modules-minimal | 2 | ||||
-rwxr-xr-x | projects/grub/grub-helper | 10 |
3 files changed, 12 insertions, 2 deletions
diff --git a/projects/grub/configs/bios/modules-minimal b/projects/grub/configs/bios/modules-minimal index ea936115..ab41ba65 100644 --- a/projects/grub/configs/bios/modules-minimal +++ b/projects/grub/configs/bios/modules-minimal @@ -1,5 +1,7 @@ biosdisk +cbfs cbmemc +configfile ext2 halt part_bsd diff --git a/projects/grub/configs/coreboot/modules-minimal b/projects/grub/configs/coreboot/modules-minimal index 310aef86..bd3248fd 100644 --- a/projects/grub/configs/coreboot/modules-minimal +++ b/projects/grub/configs/coreboot/modules-minimal @@ -1,5 +1,7 @@ ahci +cbfs cbmemc +configfile ehci ext2 halt diff --git a/projects/grub/grub-helper b/projects/grub/grub-helper index dd069290..0ffa8e27 100755 --- a/projects/grub/grub-helper +++ b/projects/grub/grub-helper @@ -128,6 +128,9 @@ grub_build_bootable_image() { local format="$(grub_format "$target" "$@")" local prefix="$(grub_prefix "$target" "$@")" local config_path="$(grub_config_path "$target" "$@")" + local modmin_path="$(grub_modmin_path "$target" "$@")" + + local -a modmin=($(< "$modmin_path")) local grub_mkimage="$sources_path/grub-mkimage" local grub_module_dir="$sources_path/grub-core" @@ -142,7 +145,7 @@ grub_build_bootable_image() { --output="$grubimg" \ --format="$format" \ --prefix="$prefix" \ - cbfs configfile + "${modmin[@]}" cat "$grub_bootimg" "$grubimg" > "$grub_bootable_img" rm -f "$grubimg" @@ -192,6 +195,9 @@ grub_build_standalone_image() { local format="$(grub_format "$target" "$@")" local prefix="$(grub_prefix "$target" "$@")" local config_path="$(grub_config_path "$target" "$@")" + local modmin_path="$(grub_modmin_path "$target" "$@")" + + local -a modmin=($(< "$modmin_path")) local grubimg="$build_path/grub2" @@ -204,7 +210,7 @@ grub_build_standalone_image() { --fonts='' \ --themes='' \ --locales='' \ - --install-modules='cbfs configfile' \ + --install-modules="${modmin[*]}" \ --directory="$grub_module_dir" \ --format="$format" \ --output="$grubimg" \ |