search for: linux0

Displaying 6 results from an estimated 6 matches for "linux0".

Did you mean: linux
2011 Aug 25
1
[PATCH node 1/3] add reinstall and uninstall options to boot menu
...'/label check0/{N;N;N;d;}' $LIVE_ROOT/isolinux/isolinux.cfg +# Rename Boot option to Install or Upgrade +sed -i 's/^ menu label Boot$/ menu label Install or Upgrade/' $LIVE_ROOT/isolinux/isolinux.cfg + # add serial console boot entry menu=$(mktemp) awk ' @@ -27,9 +30,21 @@ linux0==1 && $1=="append" { linux0==1 && $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&...
2010 Apr 13
1
[PATCH node] refactor node image recipe
...t;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 " menu label Boot in stand-alone mod...
2009 Jun 25
0
[PATCH node-image] kdump support
...F +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 Sep 30
1
PXELINUX: initrd loading failed
...work i am getting the following error initrd too large to handle, disabling initrd Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) Size of initrd0.img is approx. 317 MB Size of vmlinuz is approx. 4 MB Following is the part of my default file in pxelinux.cfg/ label linux0 menu label MyFedora13 (default) kernel vmlinuz0 APPEND rootflags=loop initrd=initrd0.img root=live:/FC13.iso rootfstype=iso9660 rw liveimg quiet selinux=0 rhgb rd_NO_LUKS rd_NO_MD noiswmd blacklist nouveau Following are the information about Ethernet Controller and PXE on the system Intel C...
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.