diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-03-10 23:32:43 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2018-03-10 23:32:43 +0000 |
commit | 4756e520df9ba8137f25f4af79caedcb96a0fac9 (patch) | |
tree | e617bf4a061caf191bbe8a9ee4d0a6fbe03325ca /examples | |
parent | 660d7f3542f2d00e903056c2301c89f45004e7b1 (diff) | |
download | drakiso-4756e520df9ba8137f25f4af79caedcb96a0fac9.tar drakiso-4756e520df9ba8137f25f4af79caedcb96a0fac9.tar.gz drakiso-4756e520df9ba8137f25f4af79caedcb96a0fac9.tar.bz2 drakiso-4756e520df9ba8137f25f4af79caedcb96a0fac9.tar.xz drakiso-4756e520df9ba8137f25f4af79caedcb96a0fac9.zip |
Add bootloader language and keyboard menus in examples.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/gui/config/build.cfg | 13 | ||||
-rw-r--r-- | examples/xfce/config/build.cfg | 13 |
2 files changed, 26 insertions, 0 deletions
diff --git a/examples/gui/config/build.cfg b/examples/gui/config/build.cfg index 9d1be92..3f9c4d1 100644 --- a/examples/gui/config/build.cfg +++ b/examples/gui/config/build.cfg @@ -187,6 +187,11 @@ my $_l = { storage => 'iso', label => build_label($build), bootloader_title => build_title($build), + bootloader_theme => '/usr/share/drakiso-bootloader/maggy', + bootloader_font => '/usr/share/drakiso-bootloader/unicode.pf2', + bootloader_langs => '/usr/share/drakiso-bootloader/lang-names.txt', + bootloader_kbds => '/usr/share/drakiso-bootloader/kbd-names.txt', + bootloader_messages => '/usr/share/drakiso-bootloader/messages', bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ @@ -196,6 +201,14 @@ my $_l = { ' + use non-free video drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => '' }, ], + mbr_boot_img => '/usr/share/drakiso-bootloader/images/boot_hybrid.img', + eltorito_img => '/usr/share/drakiso-bootloader/images/eltorito.img', + if_($arch eq 'i586', + boot_efi => '/usr/share/drakiso-bootloader/images/bootia32.efi' + ), + if_($arch eq 'x86_64', + boot_efi => '/usr/share/drakiso-bootloader/images/bootx64.efi' + ), }, mount => MGA::DrakISO::Mounts::volatile_squash_union(), }; diff --git a/examples/xfce/config/build.cfg b/examples/xfce/config/build.cfg index 36900f9..c02e738 100644 --- a/examples/xfce/config/build.cfg +++ b/examples/xfce/config/build.cfg @@ -237,6 +237,11 @@ my $_l = { storage => 'iso', label => build_label($build), bootloader_title => build_title($build), + bootloader_theme => '/usr/share/drakiso-bootloader/maggy', + bootloader_font => '/usr/share/drakiso-bootloader/unicode.pf2', + bootloader_langs => '/usr/share/drakiso-bootloader/lang-names.txt', + bootloader_kbds => '/usr/share/drakiso-bootloader/kbd-names.txt', + bootloader_messages => '/usr/share/drakiso-bootloader/messages', bootloader_default => 0, bootloader_timeout => 10, bootloader_entries => [ @@ -246,6 +251,14 @@ my $_l = { ' + use non-free video drivers (slower to boot)' => { append => $default_append . ' nokmsboot install' }, 'Memory Test' => { command => 'linux16', image => '/boot/memtest', initrd => '' }, ], + mbr_boot_img => '/usr/share/drakiso-bootloader/images/boot_hybrid.img', + eltorito_img => '/usr/share/drakiso-bootloader/images/eltorito.img', + if_($arch eq 'i586', + boot_efi => '/usr/share/drakiso-bootloader/images/bootia32.efi' + ), + if_($arch eq 'x86_64', + boot_efi => '/usr/share/drakiso-bootloader/images/bootx64.efi' + ), }, mount => MGA::DrakISO::Mounts::volatile_squash_union(), }; |