fixed missing linuxx64.efi.stub
This commit is contained in:
parent
083e39326b
commit
d32cd2fd1e
|
@ -55,6 +55,8 @@ This is WIP. Please test and report issues, comments or missing components on ht
|
||||||
- /home and /var on single data partition
|
- /home and /var on single data partition
|
||||||
|
|
||||||
## Known Failures
|
## Known Failures
|
||||||
|
- no kernel command line on DELL ( you need a newer systemd https://github.com/systemd/systemd/pull/10001 )
|
||||||
|
cp linuxx64.efi.stub to this git repo dir from a compiled upstream systemd
|
||||||
- gnome-software: can't update firmware repo
|
- gnome-software: can't update firmware repo
|
||||||
- systemd: failed to umount /var
|
- systemd: failed to umount /var
|
||||||
|
|
||||||
|
|
|
@ -127,6 +127,10 @@ trap '
|
||||||
# clean up after ourselves no matter how we die.
|
# clean up after ourselves no matter how we die.
|
||||||
trap 'exit 1;' SIGINT
|
trap 'exit 1;' SIGINT
|
||||||
|
|
||||||
|
if ! [[ -f "${BASEDIR}"/linuxx64.efi.stub ]]; then
|
||||||
|
cp /lib/systemd/boot/efi/linuxx64.efi.stub "${BASEDIR}"/linuxx64.efi.stub
|
||||||
|
fi
|
||||||
|
|
||||||
readonly sysroot="${MY_TMPDIR}/sysroot"
|
readonly sysroot="${MY_TMPDIR}/sysroot"
|
||||||
|
|
||||||
mkdir -p "$sysroot"/{dev,proc,sys,run}
|
mkdir -p "$sysroot"/{dev,proc,sys,run}
|
||||||
|
|
Loading…
Reference in a new issue