diff options
author | P. J. McDermott <pj@pehjota.net> | 2014-11-09 23:08:59 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2014-11-09 23:08:59 (EST) |
commit | 432a922643eda8d61333738687c5463376f2d877 (patch) | |
tree | 3273815cdf8ee28c4b30e11a9213b9dfec40ddd9 /build | |
parent | a2533319fbb88ad9468ca85427756e24922329f0 (diff) |
build: Add link to image in /
Some boot loaders expect to find the image in the file system root. For
example, libreboot's GRUB is configured to look for /vmlinuz on the root
device.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -21,6 +21,7 @@ install: build read img_src img_dest <image; \ install -D "src/arch/$(KBUILD_ARCH)/boot/$${img_src}" \ linux-image.data/boot/$${img_dest}; \ + ln -sf /boot/$${img_dest} linux-image.data/$${img_dest}; \ install -D src/System.map \ linux-sysmap.data/boot/System.map; \ mkdir -p linux-image.data/etc/kernel/postinst.d \ |