prevent systemd-journald messages in console 13/32513/1 accepted/tizen_3.0_common accepted/tizen_4.0_unified accepted/tizen_common accepted/tizen_mobile accepted/tizen_tv accepted/tizen_unified accepted/tizen_wearable tizen tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common tizen_3.0.2015.q2_common tizen_3.0.m2 tizen_4.0 accepted/tizen/3.0/common/20161114.112233 accepted/tizen/4.0/unified/20170816.015315 accepted/tizen/4.0/unified/20170828.222050 accepted/tizen/common/20141218.170027 accepted/tizen/mobile/20141219.011220 accepted/tizen/tv/20141219.011125 accepted/tizen/unified/20170310.075601 accepted/tizen/wearable/20141219.011147 submit/tizen/20141218.155112 submit/tizen_3.0_common/20161104.104000 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100008 submit/tizen_4.0_unified/20170814.115522 submit/tizen_unified/20170310.010401 tizen_4.0.m1_release
authorNicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
Thu, 18 Dec 2014 15:28:08 +0000 (16:28 +0100)
committerNicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
Thu, 18 Dec 2014 15:31:24 +0000 (16:31 +0100)
Change-Id: I855c62a13d34ff4cbeee18a3179d9411462dd004
Signed-off-by: Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
scripts/mode-util
scripts/system-installer
scripts/url-util

index 63a082a..e88de20 100755 (executable)
@@ -9,9 +9,9 @@ utilspath=/usr/lib/system-installer
 
 trap "exit 1" SIGINT
 
-dialog_helper --no-items --item-help --menu "Select your installation mode" 15 70 15 \
-"basic" "Put the whole url of the image that you want to install." \
-"custom" "Browse through the download.tizen.org directories and select the image that you want to install."
+dialog_helper --no-items --item-help --menu "Select your installation option" 15 70 15 \
+"preset" "Browse through the download.tizen.org directories and select the image that you want to install." \
+"url" "Put the whole url of the image that you want to install."
 
 cat << EOC > $outfile
 $(echo "$DIALOGRES")
index 461bc8b..c0b8fed 100755 (executable)
 # Being connected to the internet before launching this script is
 # better. If you aren't connected, a wifi configuration script will be fired.
 
+
 echo -e "2\t2\t2\t2" > /proc/sys/kernel/printk
 
 chvt 2
 
 export HOME="/root"
 
+# disable journald log
+systemctl stop systemd-journald.service
+systemctl mask systemd-journald.service
+
 # Used to retrieve output of the other scripts
 output_data_file="/tmp/system-installer.$$"
 
@@ -141,7 +146,7 @@ rm -f "$output_data_file" 2>/dev/null
 
 # os install confirmation
 os_install_lost="Do you want to proceed with the installation ? All your data on the target device will be lost."
-$DIALOG --yesno "${os_install_lost}" 15 70 || sigint_handler
+$DIALOG --defaultno --yesno "${os_install_lost}" 15 70 || sigint_handler
 
 # Download and install the image"
 install_os
index 94aabae..bd0035a 100755 (executable)
@@ -8,7 +8,7 @@
 #!/bin/bash
 
 outfile=${1:-/dev/stdout}
-mode=${2:-"basic"}
+mode=${2:-"preset"}
 
 BASE_URL="http://download.tizen.org/"
 IMAGE_URL=
@@ -97,7 +97,7 @@ function enter_url() {
 #######################################################
 
 
-if [ "$mode" = "custom" ]; then
+if [ "$mode" = "preset" ]; then
        IMAGE_URL+=$BASE_URL
 
        select_topdir || exit 1
@@ -121,7 +121,7 @@ if [ "$mode" = "custom" ]; then
 
        IMAGE_URL+=$(echo $curdir/*.raw.*)
 
-elif [ "$mode" = "basic" ]; then
+elif [ "$mode" = "url" ]; then
        enter_url
 fi