2015-02-08 14:25:35 +03:00
#!/bin/bash -e
2017-04-16 19:04:46 +03:00
out = " $1 "
systemd_efi = " $2 "
boot_stub = " $3 "
splash_bmp = " $4 "
if [ -z " $out " -o -z " $systemd_efi " -o -z " $boot_stub " -o -z " $splash_bmp " ] ; then
2017-04-25 02:40:02 +03:00
exit 1
2017-04-16 19:04:46 +03:00
fi
2015-02-08 14:25:35 +03:00
# create GPT table with EFI System Partition
2017-04-16 19:04:46 +03:00
rm -f " $out "
dd if = /dev/null of = " $out " bs = 1M seek = 512 count = 1 status = none
parted --script " $out " "mklabel gpt" "mkpart ESP fat32 1MiB 511MiB" "set 1 boot on"
2015-02-08 14:25:35 +03:00
# create FAT32 file system
2017-04-16 19:04:46 +03:00
LOOP = $( losetup --show -f -P " $out " )
2015-02-08 14:25:35 +03:00
mkfs.vfat -F32 ${ LOOP } p1
mkdir -p mnt
mount ${ LOOP } p1 mnt
bootctl: Always use upper case for "/EFI/BOOT" and "/EFI/BOOT/BOOT*.EFI".
If the ESP is not mounted with "iocharset=ascii", but with "iocharset=utf8"
(which is for example the default in Debian), the file system becomes case
sensitive. This means that a file created as "FooBarBaz" cannot be accessed as
"foobarbaz" since those are then considered different files.
Moreover, a file created as "FooBar" can then also not be accessed as "foobar",
and it also prevents such a file from being created, as both would use the same
8.3 short name "FOOBAR".
Even though the UEFI specification [0] does give the canonical spelling for
the files mentioned above, not all implementations completely conform to that,
so it's possible that those files would already exist, but with a different
spelling, causing subtle bugs when scanning or modifying the ESP.
While the proper fix would of course be that everybody conformed to the
standard, we can work around this problem by just referencing the files by
their 8.3 short names, i.e. using upper case.
Fixes: #3740
[0] <http://www.uefi.org/specifications>, version 2.6, section 3.5.1.1
2016-07-21 03:29:54 +03:00
mkdir -p mnt/EFI/{ BOOT,systemd}
2017-04-16 19:04:46 +03:00
cp " $systemd_efi " mnt/EFI/BOOT/BOOTX64.efi
2015-02-08 14:25:35 +03:00
[ -e /boot/shellx64.efi ] && cp /boot/shellx64.efi mnt/
mkdir mnt/EFI/Linux
2017-04-16 19:04:46 +03:00
echo -n "foo=yes bar=no root=/dev/fakeroot debug rd.break=initqueue" >mnt/cmdline.txt
2015-02-08 14:25:35 +03:00
objcopy \
2017-04-25 02:40:02 +03:00
--add-section .osrel= /etc/os-release --change-section-vma .osrel= 0x20000 \
--add-section .cmdline= mnt/cmdline.txt --change-section-vma .cmdline= 0x30000 \
--add-section .splash= " $splash_bmp " --change-section-vma .splash= 0x40000 \
--add-section .linux= /boot/$( cat /etc/machine-id) /$( uname -r) /linux --change-section-vma .linux= 0x2000000 \
--add-section .initrd= /boot/$( cat /etc/machine-id) /$( uname -r) /initrd --change-section-vma .initrd= 0x3000000 \
" $boot_stub " mnt/EFI/Linux/linux-test.efi
2015-02-08 14:25:35 +03:00
# install entries
mkdir -p mnt/loader/entries
2015-02-25 17:56:54 +03:00
echo -e "timeout 3\n" > mnt/loader/loader.conf
2015-02-26 21:51:08 +03:00
echo -e "title Test\nefi /test\n" > mnt/loader/entries/test.conf
2015-02-08 14:25:35 +03:00
echo -e "title Test2\nlinux /test2\noptions option=yes word number=1000 more\n" > mnt/loader/entries/test2.conf
echo -e "title Test3\nlinux /test3\n" > mnt/loader/entries/test3.conf
echo -e "title Test4\nlinux /test4\n" > mnt/loader/entries/test4.conf
echo -e "title Test5\nefi /test5\n" > mnt/loader/entries/test5.conf
echo -e "title Test6\nlinux /test6\n" > mnt/loader/entries/test6.conf
sync
umount mnt
rmdir mnt
losetup -d $LOOP