generic-fixed-multiuser.post for fixed multiuser 69/103369/3 accepted/tizen_3.0.m2_mobile accepted/tizen_3.0.m2_tv accepted/tizen_3.0.m2_wearable accepted/tizen_3.0_common accepted/tizen_3.0_ivi accepted/tizen_3.0_mobile accepted/tizen_3.0_tv accepted/tizen_3.0_wearable tizen_3.0 tizen_3.0.m2 tizen_3.0_tv accepted/tizen/3.0.m2/mobile/20170105.024715 accepted/tizen/3.0.m2/tv/20170105.024855 accepted/tizen/3.0.m2/wearable/20170105.025023 accepted/tizen/3.0/common/20161208.153848 accepted/tizen/3.0/ivi/20161208.101311 accepted/tizen/3.0/mobile/20161208.101217 accepted/tizen/3.0/tv/20161208.101237 accepted/tizen/3.0/wearable/20161208.101256 submit/tizen_3.0.m2/20170104.093753 submit/tizen_3.0/20161208.090821
authorSunmin Lee <sunm.lee@samsung.com>
Mon, 5 Dec 2016 11:31:17 +0000 (20:31 +0900)
committerSunmin Lee <sunm.lee@samsung.com>
Thu, 8 Dec 2016 08:55:43 +0000 (17:55 +0900)
The new feature "fixed multiuser" requires some operations
during making image.
It executes all scripts about fixed multiuser.

Change-Id: I55758d5e4a97aebede4bd4448e8e33867eef6cda
Signed-off-by: Sunmin Lee <sunm.lee@samsung.com>
scripts/generic-fixed-multiuser.post [new file with mode: 0644]

diff --git a/scripts/generic-fixed-multiuser.post b/scripts/generic-fixed-multiuser.post
new file mode 100644 (file)
index 0000000..afb010e
--- /dev/null
@@ -0,0 +1,15 @@
+#!/bin/sh
+echo "#################### generic-fixed-multiuser.post ####################"
+
+fmu_path=/usr/share/fixed_multiuser
+fmu_script=${fmu_path}/fixed-multi-user.sh
+
+if [ -d ${fmu_path} ]
+then
+       if [ -e ${fmu_script} ]
+       then
+               /bin/sh ${fmu_path}/fixed-multi-user.sh
+       fi
+
+       rm -rf ${fmu_path}
+fi