fickit: Standardize kernel filename (given by artifact name)
This commit is contained in:
parent
5db06e688a
commit
5e5114bbd3
@ -11,22 +11,22 @@ MENU TITLE FICKIT PXE BOOT
|
||||
|
||||
LABEL backend
|
||||
MENU LABEL Prepare for ^backend
|
||||
LINUX /fickit-prepare-kernel
|
||||
LINUX /fickit-boot-kernel
|
||||
INITRD /fickit-prepare-initrd.img
|
||||
APPEND console=tty0 fickit.autoprepare=backend
|
||||
LABEL frontend
|
||||
MENU LABEL Prepare for ^frontend
|
||||
LINUX /fickit-kernel
|
||||
LINUX /fickit-boot-kernel
|
||||
INITRD /fickit-boot-initrd.img
|
||||
APPEND console=tty0 fickit.autoprepare=frontend
|
||||
LABEL prepare
|
||||
MENU LABEL Prepare with ^shell
|
||||
LINUX /fickit-kernel
|
||||
LINUX /fickit-boot-kernel
|
||||
INITRD /fickit-boot-initrd.img
|
||||
APPEND console=tty0
|
||||
LABEL update
|
||||
MENU LABEL ^Update images
|
||||
LINUX /fickit-kernel
|
||||
LINUX /fickit-boot-kernel
|
||||
INITRD /fickit-update-initrd.img
|
||||
APPEND console=ttyS0 console=tty0
|
||||
MENU SEPARATOR
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
mkdir -p /boot/imgs
|
||||
|
||||
for img in fickit-kernel fickit-metadata.iso fickit-boot-initrd.img fickit-prepare-initrd.img fickit-frontend-squashfs.img fickit-backend-squashfs.img fickit-update-initrd.img
|
||||
for img in fickit-boot-kernel fickit-metadata.iso fickit-boot-initrd.img fickit-prepare-initrd.img fickit-frontend-squashfs.img fickit-backend-squashfs.img fickit-update-initrd.img
|
||||
do
|
||||
wget -O "/boot/imgs/${img}" "$1/${img}"
|
||||
done
|
||||
|
@ -181,17 +181,17 @@ files:
|
||||
|
||||
LABEL backend
|
||||
MENU LABEL FIC Backend
|
||||
LINUX /imgs/fickit-kernel
|
||||
LINUX /imgs/fickit-boot-kernel
|
||||
INITRD /imgs/fickit-boot-initrd.img
|
||||
APPEND console=ttyS0 console=tty0 root=fickit-backend-squashfs.img
|
||||
LABEL frontend
|
||||
MENU LABEL FIC Frontend
|
||||
LINUX /imgs/fickit-kernel
|
||||
LINUX /imgs/fickit-boot-kernel
|
||||
INITRD /imgs/fickit-boot-initrd.img
|
||||
APPEND console=ttyS0 console=tty0 root=fickit-frontend-squashfs.img
|
||||
LABEL update
|
||||
MENU LABEL Update images
|
||||
LINUX /imgs/fickit-kernel
|
||||
LINUX /imgs/fickit-boot-kernel
|
||||
INITRD /imgs/fickit-update-initrd.img
|
||||
APPEND console=ttyS0 console=tty0
|
||||
MENU SEPARATOR
|
||||
@ -221,19 +221,19 @@ files:
|
||||
|
||||
menuentry 'FIC Backend' {
|
||||
set root=(hd0,1)
|
||||
linux /imgs/fickit-kernel console=ttyS0 console=tty0 quiet root=fickit-backend-squashfs.img
|
||||
linux /imgs/fickit-boot-kernel console=ttyS0 console=tty0 quiet root=fickit-backend-squashfs.img
|
||||
initrd /imgs/fickit-boot-initrd.img
|
||||
}
|
||||
|
||||
menuentry 'FIC Frontend' {
|
||||
set root=(hd0,1)
|
||||
linux /imgs/fickit-kernel console=ttyS0 console=tty0 quiet root=fickit-frontend-squashfs.img
|
||||
linux /imgs/fickit-boot-kernel console=ttyS0 console=tty0 quiet root=fickit-frontend-squashfs.img
|
||||
initrd /imgs/fickit-boot-initrd.img
|
||||
}
|
||||
|
||||
menuentry 'Update images' {
|
||||
set root=(hd0,1)
|
||||
linux /imgs/fickit-kernel console=ttyS0 console=tty0 quiet
|
||||
linux /imgs/fickit-boot-kernel console=ttyS0 console=tty0 quiet
|
||||
initrd /imgs/fickit-update-initrd.img
|
||||
}
|
||||
EOF
|
||||
|
Loading…
x
Reference in New Issue
Block a user