diff options
| author | asklymenko <a.klymenko@vyos.io> | 2026-03-10 16:27:41 +0200 |
|---|---|---|
| committer | asklymenko <a.klymenko@vyos.io> | 2026-03-10 16:27:41 +0200 |
| commit | 5fe0c17b8c6cb8e244762dcb88eb9c0bf705d9f5 (patch) | |
| tree | 8cc78c70cf6487fe1004d87b17b3e655499bee22 /data | |
| parent | 8bf709c63903562f3374a143d2696952e3a7483f (diff) | |
| download | vyos-build-5fe0c17b8c6cb8e244762dcb88eb9c0bf705d9f5.tar.gz vyos-build-5fe0c17b8c6cb8e244762dcb88eb9c0bf705d9f5.zip | |
T8334:arm64: updating image via 'add system image' fails with vmlinuz not found error
Diffstat (limited to 'data')
| -rwxr-xr-x | data/live-build-config/hooks/live/19-kernel_symlinks.binary | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/data/live-build-config/hooks/live/19-kernel_symlinks.binary b/data/live-build-config/hooks/live/19-kernel_symlinks.binary new file mode 100755 index 00000000..9be4b979 --- /dev/null +++ b/data/live-build-config/hooks/live/19-kernel_symlinks.binary @@ -0,0 +1,12 @@ +#!/bin/sh + +echo I: Creating Linux Kernel symbolic links for Live image + +cd live +if [ ! -f initrd.img ]; then + cp -l initrd.img-* initrd.img +fi + +if [ ! -f vmlinuz ]; then + cp -l vmlinuz-* vmlinuz +fi |
