uefili.iso
This commit is contained in:
parent
0e9120b76f
commit
cfd6be3921
|
@ -11,3 +11,6 @@ insmod ntfs
|
|||
insmod hfsplus
|
||||
insmod linux
|
||||
insmod chain
|
||||
|
||||
search --file --no-floppy --set=milislive "/boot/grub/grub_milis.cfg"
|
||||
source "(${milislive})/boot/grub/grub_milis.cfg"
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
set pager="1"
|
||||
set locale_dir="/boot/grub/locale"
|
||||
set locale_dir="(${milislive})/boot/grub/locale"
|
||||
|
||||
if [ -e "${prefix}/${grub_cpu}-${grub_platform}/all_video.mod" ]; then
|
||||
insmod all_video
|
||||
|
@ -12,7 +13,7 @@ fi
|
|||
|
||||
insmod font
|
||||
|
||||
if loadfont "/boot/grub/fonts/unicode.pf2" ; then
|
||||
if loadfont "(${milislive})/boot/grub/fonts/unicode.pf2" ; then
|
||||
insmod gfxterm
|
||||
set gfxmode="auto"
|
||||
|
||||
|
@ -20,26 +21,26 @@ if loadfont "/boot/grub/fonts/unicode.pf2" ; then
|
|||
terminal_output gfxterm
|
||||
|
||||
insmod png
|
||||
background_image "/boot/isolinux/@@SPLASHIMAGE@@"
|
||||
background_image "(${milislive})/boot/isolinux/@@SPLASHIMAGE@@"
|
||||
fi
|
||||
|
||||
if [ cpuid -l ]; then
|
||||
menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@)" {
|
||||
set gfxpayload="keep"
|
||||
linux /boot/kernel \
|
||||
linux (${milislive})/boot/vmlinuz \
|
||||
root=live:CDLABEL=MILIS_LIVE ro \
|
||||
rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \
|
||||
vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \
|
||||
locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@
|
||||
initrd /boot/initramfs
|
||||
initrd (${milislive})/boot/initrd
|
||||
}
|
||||
menuentry "@@BOOT_TITLE@@ @@KERNVER@@ (@@ARCH@@) (RAM)" {
|
||||
set gfxpayload="keep"
|
||||
linux /boot/kernel \
|
||||
root=live:CDLABEL=MILIS_LIVE ro init=/sbin/init \
|
||||
linux (${milislive})/boot/vmlinuz \
|
||||
root=live:CDLABEL=MILIS_LIVE ro \
|
||||
rd.luks=0 rd.md=0 rd.dm=0 loglevel=4 gpt add_efi_memmap \
|
||||
vconsole.unicode=1 vconsole.keymap=@@KEYMAP@@ \
|
||||
locale.LANG=@@LOCALE@@ @@BOOT_CMDLINE@@ rd.live.ram
|
||||
initrd /boot/initramfs
|
||||
initrd (${milislive})/boot/initrd
|
||||
}
|
||||
fi
|
||||
|
|
|
@ -1126,7 +1126,6 @@ squashfs_olustur(){
|
|||
rm -r iso_icerik/LiveOS
|
||||
cp $LFS/boot/kernel-* iso_icerik/boot/kernel
|
||||
cp $LFS/boot/initramfs* iso_icerik/boot/initramfs
|
||||
cp $LFS/usr/lib/syslinux/isohdpfx.bin iso_icerik/boot/isolinux/isohdpfx.bin
|
||||
anayer=$(du -sm "$LFS"|awk '{print $1}')
|
||||
fazladan="$((anayer))"
|
||||
mkdir -p tmp
|
||||
|
@ -1159,6 +1158,7 @@ iso_olustur(){
|
|||
}
|
||||
|
||||
iso_olustur_efili() {
|
||||
cp $LFS/usr/lib/syslinux/isohdpfx.bin iso_icerik/boot/isolinux/isohdpfx.bin
|
||||
xorriso -as mkisofs \
|
||||
-iso-level 3 -rock -joliet \
|
||||
-max-iso9660-filenames -omit-period \
|
||||
|
|
Loading…
Reference in New Issue