search for: add_boot_param

Displaying 4 results from an estimated 4 matches for "add_boot_param".

Did you mean: add_boot_params
2009 Jun 25
0
[PATCH node-image] kdump support
...ump configuration +augtool <<\EOF +set /files/etc/sysconfig/kdump/KDUMP_BOOTDIR /boot-kdump +save +EOF +mkdir -p /boot-kdump + %end %post @@ -63,7 +71,7 @@ sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg awk ' BEGIN { # append additional default boot parameters - add_boot_params="check" + add_boot_params="check crashkernel=128M at 16M" } /^label linux0/ { linux0=1 } linux0==1 && $1=="append" { -- 1.6.0.6
2010 Apr 13
1
[PATCH node] refactor node image recipe
...OOT/root/.ssh/authorized_keys +fi + +echo "Fixing boot menu" +# remove quiet from Node bootparams, added by livecd-creator +sed -i -e 's/ quiet//' $LIVE_ROOT/isolinux/isolinux.cfg + +# add stand-alone boot entry +awk ' +BEGIN { + # append additional default boot parameters + add_boot_params="check" +} +/^label linux0/ { linux0=1 } +linux0==1 && $1=="append" { + $0=$0 " " add_boot_params + append0=$0 +} +linux0==1 && $1=="label" && $2!="linux0" { + linux0=2 + print "label stand-alone" + print &quo...
2009 Oct 14
4
Refactor ovirt-node-image code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Removed ks files, now in ovirt-node-recipe, which is subpackage of ovirt-node. Removed tools, these are now in ovirt-node-recipe which is subpackage of ovirt-node.
2009 Oct 14
8
Refactor ovirt-node code base for inclusion in Fedora
Main reason for refactor is no ovirt-node-image binary image allowed in fedora. Moves tools and kickstart files form ovirt-node-image to subpackage ovirt-node-recipe. Removes old sub packages form ovirt-node, stateless, logos, selinux. Modifies init scripts to meet Fedora packaging guidelines: added status, reload, and lockfile, rhbz: 514221 Added License file.