aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Kohler <bkohler@gentoo.org>2023-03-31 08:26:08 -0500
committerBen Kohler <bkohler@gentoo.org>2023-03-31 08:27:38 -0500
commitc21f53e42bf007ad074b0c6b23bfd85564832d46 (patch)
tree37423f3a45b42ba8797540654cd75f1d13c4c2fe /targets/support/bootloader-setup.sh
parentbootloader-setup.sh: remove obsolete cmdline args (diff)
downloadcatalyst-c21f53e42bf007ad074b0c6b23bfd85564832d46.tar.gz
catalyst-c21f53e42bf007ad074b0c6b23bfd85564832d46.tar.bz2
catalyst-c21f53e42bf007ad074b0c6b23bfd85564832d46.zip
remove obsolete root=/dev/ram0 init=/linuxrc from a few more places
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'targets/support/bootloader-setup.sh')
-rwxr-xr-xtargets/support/bootloader-setup.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh
index 32d86028..d6d5f96e 100755
--- a/targets/support/bootloader-setup.sh
+++ b/targets/support/bootloader-setup.sh
@@ -64,8 +64,8 @@ case ${clst_hostarch} in
for x in ${clst_boot_kernel}
do
echo -n "${bctr}:/boot/${x} " >> ${acfg}
- echo -n "initrd=/boot/${x}.igz root=/dev/ram0 " >> ${acfg}
- echo "init=/linuxrc ${cmdline_opts[@]} cdroot" >> ${acfg}
+ echo -n "initrd=/boot/${x}.igz " >> ${acfg}
+ echo "${cmdline_opts[@]} cdroot" >> ${acfg}
((bctr=${bctr}+1))
done
# Pass 2 is for serial
@@ -73,8 +73,8 @@ case ${clst_hostarch} in
for x in ${clst_boot_kernel}
do
echo -n "${bctr}:/boot/${x} " >> ${acfg}
- echo -n "initrd=/boot/${x}.igz root=/dev/ram0 " >> ${acfg}
- echo "init=/linuxrc ${cmdline_opts[@]} cdroot" >> ${acfg}
+ echo -n "initrd=/boot/${x}.igz " >> ${acfg}
+ echo "${cmdline_opts[@]} cdroot" >> ${acfg}
((bctr=${bctr}+1))
done
;;