diff options
author | Matt Turner <mattst88@gentoo.org> | 2021-07-28 18:10:58 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2021-07-28 18:13:52 -0700 |
commit | ad04eab48c96350f0866d6c1fe76f289499df21b (patch) | |
tree | 56ab934f6b61d4cefc37278781ddceac6501b124 /targets | |
parent | targets: Remove dead custom_kopts variable (diff) | |
download | catalyst-ad04eab48c96350f0866d6c1fe76f289499df21b.tar.gz catalyst-ad04eab48c96350f0866d6c1fe76f289499df21b.tar.bz2 catalyst-ad04eab48c96350f0866d6c1fe76f289499df21b.zip |
catalyst: Remove boot/kernel/*/kernelopts support
This undocumented option was only wired up for hppa, and was used by the
minimal livecd to set panic=30.
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'targets')
-rwxr-xr-x | targets/support/bootloader-setup.sh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh index a998a420..08d25b59 100755 --- a/targets/support/bootloader-setup.sh +++ b/targets/support/bootloader-setup.sh @@ -70,16 +70,10 @@ case ${clst_hostarch} in boot_kernel_common_name=${first/%32/} boot_kernel_common_name=${boot_kernel_common_name/%64/} - for x in ${clst_boot_kernel} - do - eval kopt=\$clst_boot_kernel_${x}_kernelopts - kopts+=(${kopt}) - done - # copy the bootloader for the final image cp /usr/share/palo/iplboot $1/boot/ - echo "--commandline=0/${boot_kernel_common_name} initrd=${first}.igz ${default_append_line[@]} ${kopts[@]}" >> ${icfg} + echo "--commandline=0/${boot_kernel_common_name} initrd=${first}.igz ${default_append_line[@]}" >> ${icfg} echo "--bootloader=boot/iplboot" >> ${icfg} echo "--ramdisk=boot/${first}.igz" >> ${icfg} for x in ${clst_boot_kernel} |