From e5d0ea97cf5d194ba2e67e27159b7626651b6c56 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Thu, 5 Mar 2015 17:14:59 +0100 Subject: [PATCH 01/16] Avoid weird message when pci miss MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Hardware aren't all using PCI bus. This patch improves the user experience by removing error message when PCI is missing. Change-Id: I198f08cb2b81870a2281107f4a0bf69316fcdad0 Signed-off-by: José Bollo --- src/generic-adaptation/generic-adaptation.sh | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/src/generic-adaptation/generic-adaptation.sh b/src/generic-adaptation/generic-adaptation.sh index 9a2fabb..62def3b 100644 --- a/src/generic-adaptation/generic-adaptation.sh +++ b/src/generic-adaptation/generic-adaptation.sh @@ -1,13 +1,4 @@ -do_gallium=true - -/usr/sbin/lspci \ - | grep 'VGA compatible controller: VMware' >/dev/null 2>&1 \ - || do_gallium=false - -if $do_gallium ; then - EGL_PLATFORM=gallium - export EGL_PLATFORM - - EGL_DRIVER=egl_gallium - export EGL_DRIVER +# enforce use of gallium inside VMware +if /usr/sbin/lspci 2>/dev/null | grep -q 'VGA compatible controller: VMware'; then + export EGL_PLATFORM=gallium EGL_DRIVER=egl_gallium fi -- 2.7.4 From a97ea3f491027e1bdd6d21f811501595d8fc80a8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Stelmach?= Date: Fri, 23 Jan 2015 17:21:16 +0100 Subject: [PATCH 02/16] Add support for X/Y/Z-modem protocols to the Base System MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit X/Y/Z-modem are protocols for file transfer over serial links. They can be used to send files to and receive them from a device with a serial line (e.g. console) as the only communication channel. Change-Id: I88ef9ae8c8952d0546ae554d573a90eb2acd25fc Signed-off-by: Łukasz Stelmach --- patterns/generic-base.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/patterns/generic-base.yaml b/patterns/generic-base.yaml index 1e9ac27..b242cf3 100644 --- a/patterns/generic-base.yaml +++ b/patterns/generic-base.yaml @@ -33,3 +33,4 @@ Packages: - usbutils - gum-utils - tlm +- lrzsz -- 2.7.4 From 3b00a672d61d02beb7c19a22c667445b8cf39a2f Mon Sep 17 00:00:00 2001 From: Joonsub Lee Date: Mon, 22 Jun 2015 19:50:29 +0900 Subject: [PATCH 03/16] Fix the file's wrong path: make_info_file.sh For running TCT, it needs to run make_info_file.sh file. But there is wrong path in generic-base.post: (/usr/bin/make_info_file.sh -> /etc/make_info_file.sh) Bug report from WonYoung Choi(wy80.choi@samsung.com) Change-Id: Icc97eae4c3c37a7b68c0e9e559467f573f984712 --- scripts/generic-base.post | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generic-base.post b/scripts/generic-base.post index 08ad466..83ef275 100644 --- a/scripts/generic-base.post +++ b/scripts/generic-base.post @@ -60,4 +60,4 @@ function generic_base_fix_user_homedir() { [ "${TZ_BUILD_WITH_EMULATOR}" == "1" ] && generic_base_fix_user_homedir developer # Add info.ini for system-info CAPI (TC-2047) -/usr/bin/make_info_file.sh +/etc/make_info_file.sh -- 2.7.4 From a125a55f5acf74c047fd6c28e4bf7a3986960b42 Mon Sep 17 00:00:00 2001 From: Suchang Woo Date: Thu, 16 Jul 2015 19:40:59 +0900 Subject: [PATCH 04/16] Adding unprotect/protect for buxton2 direct access This patch is the same purpose as the following commit: f56b959e1c6fd74036c6bc98860ae1a40913332f Signed-off-by: Suchang Woo Change-Id: Iae099a150a6cfe13dbb2b17cb00578544a1de651 --- scripts/generic-desktop-applications.post | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/generic-desktop-applications.post b/scripts/generic-desktop-applications.post index 5b89df4..15d274c 100644 --- a/scripts/generic-desktop-applications.post +++ b/scripts/generic-desktop-applications.post @@ -6,9 +6,15 @@ function generic_desktop_applications_buxton_unprotect() { chsmack -a '*' /var/lib/buxton/* || true chmod 0777 /var/lib/buxton || true chmod 0666 /var/lib/buxton/* || true + + chmod 0777 /var/lib/buxton2 || true + chmod 0666 /var/lib/buxton2/* || true } function generic_desktop_applications_buxton_protect() { + chmod 0600 /var/lib/buxton2/* || true + chmod 0700 /var/lib/buxton2 || true + chmod 0600 /var/lib/buxton/* || true chmod 0700 /var/lib/buxton || true chsmack -a System /var/lib/buxton/* || true -- 2.7.4 From 23e2c7b03e819bbe73888395512fc84af4608e28 Mon Sep 17 00:00:00 2001 From: Suchang Woo Date: Wed, 22 Jul 2015 21:30:19 +0900 Subject: [PATCH 05/16] Replace Buxton with Buxton2 in post script Signed-off-by: Suchang Woo Change-Id: I49b1f35043a0d7355266fe86e5b5f281b846cd82 --- scripts/generic-desktop-applications.post | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/scripts/generic-desktop-applications.post b/scripts/generic-desktop-applications.post index 15d274c..b5a89ca 100644 --- a/scripts/generic-desktop-applications.post +++ b/scripts/generic-desktop-applications.post @@ -2,11 +2,8 @@ echo "#################### generic-desktop-applications.post ####################" function generic_desktop_applications_buxton_unprotect() { - chsmack -a '*' /var/lib/buxton || true - chsmack -a '*' /var/lib/buxton/* || true - chmod 0777 /var/lib/buxton || true - chmod 0666 /var/lib/buxton/* || true - + chsmack -a '*' /var/lib/buxton2 || true + chsmack -a '*' /var/lib/buxton2/* || true chmod 0777 /var/lib/buxton2 || true chmod 0666 /var/lib/buxton2/* || true } @@ -14,11 +11,8 @@ function generic_desktop_applications_buxton_unprotect() { function generic_desktop_applications_buxton_protect() { chmod 0600 /var/lib/buxton2/* || true chmod 0700 /var/lib/buxton2 || true - - chmod 0600 /var/lib/buxton/* || true - chmod 0700 /var/lib/buxton || true - chsmack -a System /var/lib/buxton/* || true - chsmack -a System /var/lib/buxton || true + chsmack -a System /var/lib/buxton2/* || true + chsmack -a System /var/lib/buxton2 || true } # temp workaround to fill each user app_info database with global db infos @@ -34,7 +28,7 @@ function generic_desktop_applications_fix_userhome() { generic_base_user_exists $user || return 1 homedir=$(generic_base_user_home $user) - + echo "Fix app_info.db of $user" chown -R $user:users $homedir/.applications/dbspace/ } -- 2.7.4 From d94d0b37598ec73f698b70e1d93bdabb3a46eae2 Mon Sep 17 00:00:00 2001 From: HyungGi Lee Date: Thu, 23 Jul 2015 18:37:41 +0900 Subject: [PATCH 06/16] [TINF-1040] remove pulseaudio-config package from Tizen 3.0 binary pulseaudio-config contains model dependancy configuration files. As these files are also installed by mmfw-sysconf package, pulseaudio-config package needed to be removed. Change-Id: I9649d6ae6d52a3307ae94da40d5fc6f10c803df6 Signed-off-by: HyungGi Lee --- patterns/generic-multimedia.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/patterns/generic-multimedia.yaml b/patterns/generic-multimedia.yaml index a05fca7..295914b 100644 --- a/patterns/generic-multimedia.yaml +++ b/patterns/generic-multimedia.yaml @@ -5,7 +5,6 @@ Packages: - alsa-utils - alsa-plugins-pulse - pulseaudio -- pulseaudio-config - pulseaudio-locale - pulseaudio-module-bluetooth - pulseaudio-utils -- 2.7.4 From 855bfcde1cba6b1b3ad498ab3a709975ed32bed2 Mon Sep 17 00:00:00 2001 From: Stephane Desneux Date: Wed, 24 Jun 2015 11:45:26 +0200 Subject: [PATCH 07/16] patterns/generic-middleware: remove security-server Change-Id: I931e3f50d69a794fdcf695a2268c618f5dc97b76 Signed-off-by: Stephane Desneux --- patterns/generic-middleware.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/patterns/generic-middleware.yaml b/patterns/generic-middleware.yaml index 944d766..274a31b 100644 --- a/patterns/generic-middleware.yaml +++ b/patterns/generic-middleware.yaml @@ -11,4 +11,3 @@ Packages: - pkgmgr-server - sqlite3 - sdbd -- security-server -- 2.7.4 From cdbf7427c25d837e330a89b6441d1a30be08c209 Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Fri, 4 Sep 2015 13:30:48 +0900 Subject: [PATCH 08/16] Add pkgdir_maker tool pkgdir_maker tool makes data/cache dirs for global applications at each user application dirs(under $HOME/apps_rw). refer to following link for more details: https://review.tizen.org/gerrit/#/c/47450/ Change-Id: I2e75307fcaa14217e68e2ed57dc394d4a67826d4 Signed-off-by: Sangyoon Jang --- scripts/generic-desktop-applications.post | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/generic-desktop-applications.post b/scripts/generic-desktop-applications.post index b5a89ca..3884799 100644 --- a/scripts/generic-desktop-applications.post +++ b/scripts/generic-desktop-applications.post @@ -20,6 +20,7 @@ function generic_desktop_applications_buxton_protect() { generic_desktop_applications_buxton_unprotect ail_initdb pkg_initdb +pkgdir_maker --create --allglobalpkgs generic_desktop_applications_buxton_protect # depends on generic-base functions -- 2.7.4 From 9f334af2d98b2177c36edfd38e0e8880deeb0c5b Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Tue, 3 Nov 2015 18:45:50 +0900 Subject: [PATCH 09/16] Rename pkgdir_maker to pkgdir_tool refer to https://review.tizen.org/gerrit/#/c/47937/ Change-Id: I2900145676fd54468e787d77eac2fa96077cb0b9 Signed-off-by: Sangyoon Jang --- scripts/generic-desktop-applications.post | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generic-desktop-applications.post b/scripts/generic-desktop-applications.post index 3884799..3634570 100644 --- a/scripts/generic-desktop-applications.post +++ b/scripts/generic-desktop-applications.post @@ -20,7 +20,7 @@ function generic_desktop_applications_buxton_protect() { generic_desktop_applications_buxton_unprotect ail_initdb pkg_initdb -pkgdir_maker --create --allglobalpkgs +pkgdir_tool --create --allglobalpkgs generic_desktop_applications_buxton_protect # depends on generic-base functions -- 2.7.4 From 4e0a1eb4ebb73dcce0e6219a3c78a78006e27a2b Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Thu, 5 Nov 2015 16:02:25 +0900 Subject: [PATCH 10/16] Fix typo: pkgdir_tool -> pkgdir-tool Change-Id: I36be387969f98acb4f5d196c8a1eb7d1c55f2a3b Signed-off-by: Sangyoon Jang --- scripts/generic-desktop-applications.post | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generic-desktop-applications.post b/scripts/generic-desktop-applications.post index 3634570..dc1899b 100644 --- a/scripts/generic-desktop-applications.post +++ b/scripts/generic-desktop-applications.post @@ -20,7 +20,7 @@ function generic_desktop_applications_buxton_protect() { generic_desktop_applications_buxton_unprotect ail_initdb pkg_initdb -pkgdir_tool --create --allglobalpkgs +pkgdir-tool --create --allglobalpkgs generic_desktop_applications_buxton_protect # depends on generic-base functions -- 2.7.4 From b0c0c0c932044966d7a4cbc503895e322fa57dab Mon Sep 17 00:00:00 2001 From: Joonsub Lee Date: Wed, 23 Dec 2015 20:22:22 +0900 Subject: [PATCH 11/16] [TINF-1190] Adjust package groups and post scipt https://bugs.tizen.org/jira/browse/TINF-1190 Change-Id: I313f98c19e17fd76e883ab2ae3969850b778b9c7 --- patterns/generic-base.yaml | 3 --- patterns/generic-console-tools.yaml | 8 -------- scripts/generic-base.post | 5 ----- 3 files changed, 16 deletions(-) diff --git a/patterns/generic-base.yaml b/patterns/generic-base.yaml index b242cf3..bd30554 100644 --- a/patterns/generic-base.yaml +++ b/patterns/generic-base.yaml @@ -26,11 +26,8 @@ Packages: - net-tools - kbd - glibc-locale -- pciutils - default-ac-domains - wpa_supplicant -- prelink -- usbutils - gum-utils - tlm - lrzsz diff --git a/patterns/generic-console-tools.yaml b/patterns/generic-console-tools.yaml index 5347d5a..abad698 100644 --- a/patterns/generic-console-tools.yaml +++ b/patterns/generic-console-tools.yaml @@ -6,23 +6,15 @@ Packages: - wget - grep - gzip -- openssh - rsync - parted - zip -- vim - unzip - less - xz -- nano - curl -- strace -- diffutils -- patch - findutils - wdiff - powertop -- sudo - ca-certificates-mozilla - iptables -- tree diff --git a/scripts/generic-base.post b/scripts/generic-base.post index 83ef275..5b9fbcd 100644 --- a/scripts/generic-base.post +++ b/scripts/generic-base.post @@ -22,11 +22,6 @@ mkdir -p /lib/systemd/user/default.target.wants # start dbus session ln -s ../dbus.service /lib/systemd/user/default.target.wants/ -# Run prelink to speed up dynamic binary/library loading -/usr/sbin/prelink --all - -ln -sf /proc/self/mounts /etc/mtab - # sdx: fix smack labels on /var/log chsmack -a '*' /var/log -- 2.7.4 From 0619f88b3983bb54f384aed4fa9305d288bd62a7 Mon Sep 17 00:00:00 2001 From: HyungGi Lee Date: Mon, 28 Dec 2015 08:35:17 +0900 Subject: [PATCH 12/16] adjust generic packages https://bugs.tizen.org/jira/browse/TINF-1195 Change-Id: I5d0c0477461bfe591760c6586e12a2a30e1d9f81 Signed-off-by: HyungGi Lee --- patterns/generic-base.yaml | 2 -- patterns/generic-console-tools.yaml | 5 ----- 2 files changed, 7 deletions(-) diff --git a/patterns/generic-base.yaml b/patterns/generic-base.yaml index bd30554..67fa3e6 100644 --- a/patterns/generic-base.yaml +++ b/patterns/generic-base.yaml @@ -24,10 +24,8 @@ Packages: - procps - psmisc - net-tools -- kbd - glibc-locale - default-ac-domains - wpa_supplicant - gum-utils - tlm -- lrzsz diff --git a/patterns/generic-console-tools.yaml b/patterns/generic-console-tools.yaml index abad698..c8df8de 100644 --- a/patterns/generic-console-tools.yaml +++ b/patterns/generic-console-tools.yaml @@ -6,15 +6,10 @@ Packages: - wget - grep - gzip -- rsync -- parted - zip - unzip -- less - xz - curl - findutils -- wdiff -- powertop - ca-certificates-mozilla - iptables -- 2.7.4 From b7823ec8b4569344389486dc07590bfe0a1b2c63 Mon Sep 17 00:00:00 2001 From: HyungGi Lee Date: Tue, 29 Dec 2015 08:03:48 +0900 Subject: [PATCH 13/16] remove alsa-plugins-pulse https://bugs.tizen.org/jira/browse/TINF-1200 Change-Id: I3de3ca38032e5f118a663182090ce361d06b5efe --- patterns/generic-multimedia.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/patterns/generic-multimedia.yaml b/patterns/generic-multimedia.yaml index 295914b..b4f6f69 100644 --- a/patterns/generic-multimedia.yaml +++ b/patterns/generic-multimedia.yaml @@ -3,7 +3,6 @@ Description: Generic Multimedia Name: generic-multimedia Packages: - alsa-utils -- alsa-plugins-pulse - pulseaudio - pulseaudio-locale - pulseaudio-module-bluetooth -- 2.7.4 From c8b87d54aa1612c2cc052050ee0798cce30e4993 Mon Sep 17 00:00:00 2001 From: HyungGi Lee Date: Tue, 29 Dec 2015 08:35:16 +0900 Subject: [PATCH 14/16] adjust generic package https://bugs.tizen.org/jira/browse/TINF-1179 remove wget package Change-Id: I0d15976e78f15fdc6174e9e606ba741488b5b024 --- patterns/generic-console-tools.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/patterns/generic-console-tools.yaml b/patterns/generic-console-tools.yaml index c8df8de..ae8c5d2 100644 --- a/patterns/generic-console-tools.yaml +++ b/patterns/generic-console-tools.yaml @@ -3,7 +3,6 @@ Description: Generic Console Tools Name: generic-console-tools Packages: - tar -- wget - grep - gzip - zip -- 2.7.4 From ef91fd101c06fb8b1fe6e3776093c140b4371134 Mon Sep 17 00:00:00 2001 From: Aleksander Mistewicz Date: Tue, 22 Dec 2015 14:41:34 +0100 Subject: [PATCH 15/16] @Generic Crosswalk now pulls crosswalk-tizen Change-Id: Iabe54fc9d12d0ca22acf1ba2a394f254259b7c5c Signed-off-by: Aleksander Mistewicz --- patterns/generic-crosswalk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/generic-crosswalk.yaml b/patterns/generic-crosswalk.yaml index a1005d1..c9b5c6f 100644 --- a/patterns/generic-crosswalk.yaml +++ b/patterns/generic-crosswalk.yaml @@ -2,5 +2,5 @@ Summary: Generic Crosswalk Description: Generic Crosswalk Name: generic-crosswalk Packages: -- crosswalk +- crosswalk-tizen -- 2.7.4 From 908a338fa8905f565e6300640b88c1b1e566b8b9 Mon Sep 17 00:00:00 2001 From: Maciej Wereski Date: Mon, 11 Jan 2016 15:41:47 +0100 Subject: [PATCH 16/16] Generic Middleware: replace csf-framework with csr-framework Change-Id: I57ff6e61efecc8f7ecb00a07822478f2e3d4b268 Signed-off-by: Maciej Wereski --- patterns/generic-middleware.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patterns/generic-middleware.yaml b/patterns/generic-middleware.yaml index 274a31b..c9f60e9 100644 --- a/patterns/generic-middleware.yaml +++ b/patterns/generic-middleware.yaml @@ -2,7 +2,7 @@ Summary: Generic Middleware Description: Generic Middleware Name: generic-middleware Packages: -- csf-framework +- csr-framework - elm-misc - efl-theme-tizen-hd - evolution-data-server -- 2.7.4