]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/test-efi-create-disk.sh
Merge pull request #12802 from irtimmer/fix-openssl
[thirdparty/systemd.git] / test / test-efi-create-disk.sh
CommitLineData
0fa2cac4
KS
1#!/bin/bash -e
2
d83f4f50
ZJS
3out="$1"
4systemd_efi="$2"
5boot_stub="$3"
6splash_bmp="$4"
7if [ -z "$out" -o -z "$systemd_efi" -o -z "$boot_stub" -o -z "$splash_bmp" ]; then
cc5549ca 8 exit 1
d83f4f50
ZJS
9fi
10
0fa2cac4 11# create GPT table with EFI System Partition
d83f4f50
ZJS
12rm -f "$out"
13dd if=/dev/null of="$out" bs=1M seek=512 count=1 status=none
14parted --script "$out" "mklabel gpt" "mkpart ESP fat32 1MiB 511MiB" "set 1 boot on"
0fa2cac4
KS
15
16# create FAT32 file system
d83f4f50 17LOOP=$(losetup --show -f -P "$out")
0fa2cac4
KS
18mkfs.vfat -F32 ${LOOP}p1
19mkdir -p mnt
20mount ${LOOP}p1 mnt
21
00f69504 22mkdir -p mnt/EFI/{BOOT,systemd}
d83f4f50 23cp "$systemd_efi" mnt/EFI/BOOT/BOOTX64.efi
0fa2cac4
KS
24
25[ -e /boot/shellx64.efi ] && cp /boot/shellx64.efi mnt/
26
27mkdir mnt/EFI/Linux
d83f4f50 28echo -n "foo=yes bar=no root=/dev/fakeroot debug rd.break=initqueue" >mnt/cmdline.txt
0fa2cac4 29objcopy \
cc5549ca
ZJS
30 --add-section .osrel=/etc/os-release --change-section-vma .osrel=0x20000 \
31 --add-section .cmdline=mnt/cmdline.txt --change-section-vma .cmdline=0x30000 \
32 --add-section .splash="$splash_bmp" --change-section-vma .splash=0x40000 \
33 --add-section .linux=/boot/$(cat /etc/machine-id)/$(uname -r)/linux --change-section-vma .linux=0x2000000 \
34 --add-section .initrd=/boot/$(cat /etc/machine-id)/$(uname -r)/initrd --change-section-vma .initrd=0x3000000 \
35 "$boot_stub" mnt/EFI/Linux/linux-test.efi
0fa2cac4
KS
36
37# install entries
38mkdir -p mnt/loader/entries
a19b0678 39echo -e "timeout 3\n" > mnt/loader/loader.conf
7361099e 40echo -e "title Test\nefi /test\n" > mnt/loader/entries/test.conf
0fa2cac4
KS
41echo -e "title Test2\nlinux /test2\noptions option=yes word number=1000 more\n" > mnt/loader/entries/test2.conf
42echo -e "title Test3\nlinux /test3\n" > mnt/loader/entries/test3.conf
43echo -e "title Test4\nlinux /test4\n" > mnt/loader/entries/test4.conf
44echo -e "title Test5\nefi /test5\n" > mnt/loader/entries/test5.conf
45echo -e "title Test6\nlinux /test6\n" > mnt/loader/entries/test6.conf
46
47sync
48umount mnt
49rmdir mnt
50losetup -d $LOOP