Displaying 4 results from an estimated 4 matches for "boot_with_px".
Did you mean:
boot_with_pxe
2009 Jul 16
1
[PATCH node-image] Removes the explicit setting of the emulator for testing.
...bug "Adding a hard drive to the node"
@@ -566,7 +564,7 @@ test_stateful_pxe () {
start_networking $nodename $IFACE_NAME false true $workdir
configure_node "${nodename}" "network" "" "10000" "" "local noapic=true"
- boot_with_pxe "${nodename}" "standalone storage_init=/dev/vda local_boot ip=${ipaddress}" ${workdir}
+ boot_with_pxe "${nodename}" "standalone storage_init=/dev/vda local_boot ip=${ipaddress} vlan=12" ${workdir}
# verify the booting and installation
expect...
2009 May 19
1
[PATCH node-image] Fixing the autotest script.
...{
+ local nodename="${vm_prefix}-stateless-pxe"
local workdir=$(mktemp -d)
start_networking $nodename $IFACE_NAME false true $workdir
- configure_node "${nodename}" "network" "" "" "" "local noapic=true"
- boot_with_pxe "${nodename}" "firstboot=no" "${workdir}"
+ configure_node "${nodename}" "network" "" "10000" "" "local noapic=true"
+ boot_with_pxe "${nodename}" "standalone firstboot=no" "${w...
2009 Dec 15
1
[PATCH] The autotest timeout is now a command line configurable option.
...nable more verbose output (default: disabled)
+ -t: change the timeout between markers (in ms, default: 120)
-v: enable tracing (default: disabled)
-w: launch virt-viewer for each VM (default: no window shown)
-h: display this help and exit
@@ -484,7 +485,7 @@ test_stateless_pxe () {
boot_with_pxe "${nodename}" "standalone firstboot=no" "${workdir}"
expect -c '
-set timeout 120
+set timeout '${timeout_period}'
log_file -noappend stateless-pxe.log
@@ -526,7 +527,7 @@ test_stateless_pxe_with_nohd () {
boot_with_pxe "${nodename}&q...
2010 Mar 26
3
[PATCH node] Update autobuild and autotest scripts for new build structure
...count=0;
+
+# $1 - test name
+add_test () {
+ tests="${tests} $1"
+}
+
+# $1 - node name
+start_virt_viewer () {
+ local nodename=$1
+
+ sudo virt-viewer $nodename > /dev/null 2>&1&
+}
+
+# $1 - the node's name
+# $2 - kernel arguments
+# $3 - working directory
+boot_with_pxe () {
+ local nodename=$1
+ local kernel_args=$2
+ local workdir=$3
+
+ debug "boot_with_pxe ()"
+ debug "- workdir: ${workdir}"
+ debug "- nodename: ${nodename}"
+ debug "- kernel_args: ${kernel_args}"
+
+ setup_pxeboot $wor...