summaryrefslogtreecommitdiffstats
path: root/meta/packages/initrdscripts/files/init-live.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/initrdscripts/files/init-live.sh')
-rw-r--r--meta/packages/initrdscripts/files/init-live.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/packages/initrdscripts/files/init-live.sh b/meta/packages/initrdscripts/files/init-live.sh
index 96a1a9488f..d4e53713ef 100644
--- a/meta/packages/initrdscripts/files/init-live.sh
+++ b/meta/packages/initrdscripts/files/init-live.sh
@@ -27,9 +27,9 @@ read_args() {
27 LABEL=*) 27 LABEL=*)
28 label=$optarg ;; 28 label=$optarg ;;
29 video=*) 29 video=*)
30 video_mode=$optarg ;; 30 video_mode=$arg ;;
31 vga=*) 31 vga=*)
32 vga_mode=$optarg ;; 32 vga_mode=$arg ;;
33 esac 33 esac
34 done 34 done
35} 35}
@@ -79,7 +79,7 @@ case $label in
79 ;; 79 ;;
80 install) 80 install)
81 if [ -f /media/$i/$ROOT_IMAGE ] ; then 81 if [ -f /media/$i/$ROOT_IMAGE ] ; then
82 ./install.sh $i $ROOT_IMAGE $video_mode $vga 82 ./install.sh $i $ROOT_IMAGE $video_mode $vga_mode
83 else 83 else
84 fatal "Couldnt find install script" 84 fatal "Couldnt find install script"
85 fi 85 fi