diff options
author | Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org> | 2014-12-18 16:28:08 +0100 |
---|---|---|
committer | Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org> | 2014-12-18 16:31:24 +0100 |
commit | 9ad1297d81423bab75cd993148ec73b104074324 (patch) | |
tree | 80a5bed1f5aa5cb9422f7ab9c00b695020bb8ea3 | |
parent | 64fc4ad7537eca4e0e06f5436a6d11af1e39dbb0 (diff) | |
download | system-installer-tizen_3.0.m2.tar.gz system-installer-tizen_3.0.m2.tar.bz2 system-installer-tizen_3.0.m2.zip |
prevent systemd-journald messages in consoleHEADtizen_4.0.m1_releasesubmit/tizen_unified/20170310.010401submit/tizen_4.0_unified/20170814.115522submit/tizen_4.0/20170828.100008submit/tizen_4.0/20170814.115522submit/tizen_4.0/20170811.094300submit/tizen_3.0_common/20161104.104000submit/tizen/20141218.155112accepted/tizen/wearable/20141219.011147accepted/tizen/unified/20170310.075601accepted/tizen/tv/20141219.011125accepted/tizen/mobile/20141219.011220accepted/tizen/common/20141218.170027accepted/tizen/4.0/unified/20170828.222050accepted/tizen/4.0/unified/20170816.015315accepted/tizen/3.0/common/20161114.112233tizen_4.0tizen_3.0.m2tizen_3.0.2015.q2_commontizen_3.0.2015.q1_commontizen_3.0.2014.q4_commontizenaccepted/tizen_wearableaccepted/tizen_unifiedaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_commonaccepted/tizen_4.0_unifiedaccepted/tizen_3.0_common
Change-Id: I855c62a13d34ff4cbeee18a3179d9411462dd004
Signed-off-by: Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org>
-rwxr-xr-x | scripts/mode-util | 6 | ||||
-rwxr-xr-x | scripts/system-installer | 7 | ||||
-rwxr-xr-x | scripts/url-util | 6 |
3 files changed, 12 insertions, 7 deletions
diff --git a/scripts/mode-util b/scripts/mode-util index 63a082a..e88de20 100755 --- a/scripts/mode-util +++ b/scripts/mode-util @@ -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") diff --git a/scripts/system-installer b/scripts/system-installer index 461bc8b..c0b8fed 100755 --- a/scripts/system-installer +++ b/scripts/system-installer @@ -23,12 +23,17 @@ # 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 diff --git a/scripts/url-util b/scripts/url-util index 94aabae..bd0035a 100755 --- a/scripts/url-util +++ b/scripts/url-util @@ -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 |