use /usr/bin/ instead of /bin/ as the target paths for binaries
-
hooks/*
: use full path to ash in the shebang/bin
is a symlink to/usr/bin
and it is not inPATH
, so it is better to reference the "real" location of "ash
". -
install/archiso_pxe_{common,nfs}
: use/usr/bin/
instead of/bin/
as the target paths for binariesWhile
"$BUILDROOT/bin"
is a symlink to"$BUILDROOT/usr/bin"
, let's not rely on the symlink. Especially since/bin
is not in the initramfs'PATH
.
Edited by nl6720