search for: kernelarg

Displaying 2 results from an estimated 2 matches for "kernelarg".

Did you mean: kernelargs
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...uot; + + if [ $rc -ne 0 ]; then + log "Build fails smoke tests." + fi + + return $rc +} + +# setup a node for pxeboot +# $1 - the working directory +# $2 - kernel arguments; if present then they replace all default flags +setup_pxeboot () { + local workdir=$1 + local kernelargs=$2 + local pxedefault=$workdir/tftpboot/pxelinux.cfg/default + + debug "setup for pxeboot: isofile=${isofile} workdir=${workdir} kernelargs='${kernelargs}' pxedefault=${pxedefault}" + (cd $workdir && sudo livecd-iso-to-pxeboot $isofile) > /dev/null 2>&1...
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...hen - log "Build fails smoke tests." - exit 1 + log "Build fails smoke tests." fi return $rc @@ -103,7 +102,7 @@ setup_pxeboot () { # set default kernel arguments if none were provided # the defaults boot in standalone mode if [ -z "$kernelargs" ]; then - kernelargs="ovirt_standalone" + kernelargs="standalone" fi local definition="DEFAULT pxeboot" @@ -133,18 +132,18 @@ start_dnsmasq () { stop_dnsmasq debug "Starting dnsmasq" dns_startup="sudo /usr/sbin/dnsmasq -...