search for: append0

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

Did you mean: append
2011 Aug 25
1
[PATCH node 1/3] add reinstall and uninstall options to boot menu
...p;& $1=="label" && $2!="linux0" { linux0=2 print "label serial-console" - print " menu label Boot with serial console" + print " menu label Install or Upgrade with serial console" print " kernel vmlinuz0" - print append0" console=ttyS0,115200n8" + print append0" console=ttyS0,115200n8 " + print "label reinstall" + print " menu label Reinstall" + print " kernel vmlinux0" + print append0" reinstall " + print "label reinstall-serial" + prin...
2010 Apr 13
1
[PATCH node] refactor node image recipe
...t//' $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 " menu label Boot in stand-alone mode" + print " kernel vmlinuz0" + gsub("console=tty0", "", append0) + prin...
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.