search for: debug_shell

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

2009 Jul 15
1
[PATCH node] Changes the exit/continue based on context.
...) diff --git a/scripts/ovirt-config-setup b/scripts/ovirt-config-setup index ee78254..4010828 100755 --- a/scripts/ovirt-config-setup +++ b/scripts/ovirt-config-setup @@ -10,7 +10,6 @@ CONFIG_DIR=/etc/ovirt-config-setup.d # special options, all others execute the symlinked script in CONFIG_DIR DEBUG_SHELL="Shell" -CONTINUE="Continue Stateless Boot" declare -a OPTIONS @@ -32,13 +31,32 @@ for cfg in $CONFIG_DIR/*; do fi done OPTIONS[${#OPTIONS[*]}]="$DEBUG_SHELL" -OPTIONS[${#OPTIONS[*]}]="$CONTINUE" # reset tty, otherwise serial console is broke...
2009 Jun 16
1
[PATCH node] Adds a log viewer option to o-c-setup. bz#506289
...(-) diff --git a/scripts/ovirt-config-setup b/scripts/ovirt-config-setup index ee78254..11711e1 100755 --- a/scripts/ovirt-config-setup +++ b/scripts/ovirt-config-setup @@ -11,6 +11,8 @@ CONFIG_DIR=/etc/ovirt-config-setup.d # special options, all others execute the symlinked script in CONFIG_DIR DEBUG_SHELL="Shell" CONTINUE="Continue Stateless Boot" +VIEW_LOG="View ovirt.log" +OVIRT_LOG=/var/log/ovirt.log declare -a OPTIONS @@ -33,6 +35,7 @@ for cfg in $CONFIG_DIR/*; do done OPTIONS[${#OPTIONS[*]}]="$DEBUG_SHELL" OPTIONS[${#OPTIONS[*]}]="$CONTINUE&...
2009 Jul 14
0
[PATCH node] Changes the exit prompt based on whether it's firstboot of cmdline.
...diff --git a/scripts/ovirt-config-setup b/scripts/ovirt-config-setup index ee78254..105f7bc 100755 --- a/scripts/ovirt-config-setup +++ b/scripts/ovirt-config-setup @@ -10,7 +10,23 @@ CONFIG_DIR=/etc/ovirt-config-setup.d # special options, all others execute the symlinked script in CONFIG_DIR DEBUG_SHELL="Shell" -CONTINUE="Continue Stateless Boot" + +during_firstboot=true +for tty in $(ps -ef | awk '{ printf $2"::"$6" " '}); do + if [[ "$tty" =~ "$$::" ]]; then + len=${#$} + the_tty=${tty:len+2} + if [ "$the_tty" != &q...
2014 Feb 12
61
P2V: Headless support
This introduces support to run P2V without X server. Runtime parameters are specified via kernel command line making it hopefully suitable for automated migration with a little help of PXE boot. Patchset is not squashed and represents dev. history.