Skip to content
Snippets Groups Projects

Remove kernel from boot partition on GRUB/EFI platforms

2 unresolved threads
2 files
+ 14
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -21,3 +21,10 @@ GRUB_BUILDIN:append = " squash4 halt echo"
# grub supports this arch. It doesn't support hardfp configuration that can't
# be forced into softfp with a compiler flag. qemuarm-efi defaults to softfp.
COMPATIBLE_HOST:qemuarm-efi = 'arm.*-(linux.*|freebsd.*)'
# The base recipe installs a kernel image that is not used for booting
Please register or sign in to reply
# and it can be safely removed.
do_install:append(){
# remove kernel.img.
rm -f $(find ${WORKDIR} -name kernel.img)
}
Loading