1
0
mirror of https://github.com/systemd/systemd.git synced 2025-09-15 13:44:41 +03:00

Merge pull request #19506 from xnox/ship-stub-elf

boot/efi: install ELF linux.elf.stub in addition to PE linux.efi.stub
This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2021-05-12 09:45:36 +02:00
committed by GitHub
2 changed files with 39 additions and 34 deletions

View File

@@ -224,6 +224,7 @@ if have_gnu_efi
'-Bsymbolic', '-Bsymbolic',
'-nostdlib', '-nostdlib',
'-znocombreloc', '-znocombreloc',
'--build-id=sha1',
'-L', efi_libdir, '-L', efi_libdir,
efi_crt0] efi_crt0]
if ['aarch64', 'arm', 'riscv64'].contains(efi_arch) if ['aarch64', 'arm', 'riscv64'].contains(efi_arch)
@@ -254,24 +255,22 @@ if have_gnu_efi
libgcc_file_name = run_command(efi_cc + ['-print-libgcc-file-name']).stdout().strip() libgcc_file_name = run_command(efi_cc + ['-print-libgcc-file-name']).stdout().strip()
systemd_boot_efi_name = 'systemd-boot@0@.efi'.format(EFI_MACHINE_TYPE_NAME) systemd_boot_efi_name = 'systemd-boot@0@.efi'.format(EFI_MACHINE_TYPE_NAME)
stub_elf_name = 'linux@0@.elf.stub'.format(EFI_MACHINE_TYPE_NAME)
stub_efi_name = 'linux@0@.efi.stub'.format(EFI_MACHINE_TYPE_NAME) stub_efi_name = 'linux@0@.efi.stub'.format(EFI_MACHINE_TYPE_NAME)
no_undefined_symbols = find_program('no-undefined-symbols.sh') no_undefined_symbols = find_program('no-undefined-symbols.sh')
foreach tuple : [['systemd_boot.so', systemd_boot_efi_name, systemd_boot_objects], efi_stubs = []
['stub.so', stub_efi_name, stub_objects]] foreach tuple : [['systemd_boot.so', systemd_boot_efi_name, systemd_boot_objects, false],
[stub_elf_name, stub_efi_name, stub_objects, true]]
so = custom_target( so = custom_target(
tuple[0], tuple[0],
input : tuple[2], input : tuple[2],
output : tuple[0], output : tuple[0],
command : [efi_ld, '-o', '@OUTPUT@'] + command : [efi_ld, '-o', '@OUTPUT@',
efi_ldflags + tuple[2] + efi_ldflags, tuple[2],
['-lefi', '-lgnuefi', libgcc_file_name]) '-lefi', '-lgnuefi', libgcc_file_name],
install : tuple[3],
if want_tests != 'false' install_dir : bootlibdir)
test('no-undefined-symbols-' + tuple[0],
no_undefined_symbols,
args : [so])
endif
stub = custom_target( stub = custom_target(
tuple[1], tuple[1],
@@ -284,22 +283,26 @@ if have_gnu_efi
'-j', '.data', '-j', '.data',
'-j', '.dynamic', '-j', '.dynamic',
'-j', '.dynsym', '-j', '.dynsym',
'-j', '.rel*'] '-j', '.rel*',
+ efi_format + efi_format,
['@INPUT@', '@OUTPUT@'], '@INPUT@', '@OUTPUT@'],
install : true, install : true,
install_dir : bootlibdir) install_dir : bootlibdir)
set_variable(tuple[0].underscorify(), so) efi_stubs += [[so, stub]]
set_variable(tuple[0].underscorify() + '_stub', stub)
if want_tests != 'false'
test('no-undefined-symbols-' + tuple[0],
no_undefined_symbols,
args : so)
endif
endforeach endforeach
############################################################ ############################################################
test_efi_disk_img = custom_target( test_efi_disk_img = custom_target(
'test-efi-disk.img', 'test-efi-disk.img',
input : [systemd_boot_so, stub_so_stub], input : [efi_stubs[0][0], efi_stubs[1][1]],
output : 'test-efi-disk.img', output : 'test-efi-disk.img',
command : [test_efi_create_disk_sh, '@OUTPUT@', command : [test_efi_create_disk_sh, '@OUTPUT@','@INPUT@', splash_bmp])
'@INPUT0@', '@INPUT1@', splash_bmp])
endif endif

View File

@@ -1,13 +1,13 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e set -eo pipefail
out="$1" out="${1:?}"
systemd_efi="$2" systemd_efi="${2:?}"
boot_stub="$3" boot_stub="${3:?}"
splash_bmp="$4" splash_bmp="${4:?}"
if [ -z "$out" -o -z "$systemd_efi" -o -z "$boot_stub" -o -z "$splash_bmp" ]; then
exit 1 efi_dir="$(bootctl -p)"
fi entry_dir="${efi_dir}/$(cat /etc/machine-id)/$(uname -r)"
# create GPT table with EFI System Partition # create GPT table with EFI System Partition
rm -f "$out" rm -f "$out"
@@ -15,15 +15,17 @@ 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" parted --script "$out" "mklabel gpt" "mkpart ESP fat32 1MiB 511MiB" "set 1 boot on"
# create FAT32 file system # create FAT32 file system
LOOP=$(losetup --show -f -P "$out") LOOP="$(losetup --show -f -P "$out")"
mkfs.vfat -F32 ${LOOP}p1 mkfs.vfat -F32 "${LOOP}p1"
mkdir -p mnt mkdir -p mnt
mount ${LOOP}p1 mnt mount "${LOOP}p1" mnt
mkdir -p mnt/EFI/{BOOT,systemd} mkdir -p mnt/EFI/{BOOT,systemd}
cp "$systemd_efi" mnt/EFI/BOOT/BOOTX64.efi cp "$systemd_efi" mnt/EFI/BOOT/BOOTX64.efi
[ -e /boot/shellx64.efi ] && cp /boot/shellx64.efi mnt/ if [ -e /boot/shellx64.efi ]; then
cp /boot/shellx64.efi mnt/
fi
mkdir mnt/EFI/Linux mkdir mnt/EFI/Linux
echo -n "foo=yes bar=no root=/dev/fakeroot debug rd.break=initqueue" >mnt/cmdline.txt echo -n "foo=yes bar=no root=/dev/fakeroot debug rd.break=initqueue" >mnt/cmdline.txt
@@ -31,8 +33,8 @@ objcopy \
--add-section .osrel=/etc/os-release --change-section-vma .osrel=0x20000 \ --add-section .osrel=/etc/os-release --change-section-vma .osrel=0x20000 \
--add-section .cmdline=mnt/cmdline.txt --change-section-vma .cmdline=0x30000 \ --add-section .cmdline=mnt/cmdline.txt --change-section-vma .cmdline=0x30000 \
--add-section .splash="$splash_bmp" --change-section-vma .splash=0x40000 \ --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 .linux="${entry_dir}/linux" --change-section-vma .linux=0x2000000 \
--add-section .initrd=/boot/$(cat /etc/machine-id)/$(uname -r)/initrd --change-section-vma .initrd=0x3000000 \ --add-section .initrd="${entry_dir}/initrd" --change-section-vma .initrd=0x3000000 \
"$boot_stub" mnt/EFI/Linux/linux-test.efi "$boot_stub" mnt/EFI/Linux/linux-test.efi
# install entries # install entries
@@ -48,4 +50,4 @@ echo -e "title Test6\nlinux /test6\n" > mnt/loader/entries/test6.conf
sync sync
umount mnt umount mnt
rmdir mnt rmdir mnt
losetup -d $LOOP losetup -d "$LOOP"