Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts
@ 2015-10-10  7:01 Robert Yang
  2015-10-10  7:01 ` [PATCH 1/5] debianutils: fix ALTERNATIVE_PRIORITY conflict with which Robert Yang
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Robert Yang @ 2015-10-10  7:01 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 4038970f8ce27ac0d7a0afe2cdaa9a65108dfff5:

  os-release: fix do_compile() when RPM signing is enabled (2015-10-07 00:08:07 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/alternatives
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/alternatives

Robert Yang (5):
  debianutils: fix ALTERNATIVE_PRIORITY conflict with which
  console-tools: fix ALTERNATIVE_PRIORITY conflict with kbd
  util-linux: fix ALTERNATIVE_PRIORITY conflict with ncurses procps and
    e2fsprogs
  coreutils: fix ALTERNATIVE_PRIORITY conflict with procps and mktemp
  gtk+3: fix ALTERNATIVE_PRIORITY conflict with gtk+

 .../console-tools/console-tools_0.3.2.bb           |    2 +-
 meta/recipes-core/coreutils/coreutils_8.24.bb      |    2 +-
 meta/recipes-core/util-linux/util-linux.inc        |    2 +-
 meta/recipes-gnome/gtk+/gtk+3.inc                  |    1 +
 .../debianutils/debianutils_4.5.1.bb               |    2 +-
 5 files changed, 5 insertions(+), 4 deletions(-)

-- 
1.7.9.5



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/5] debianutils: fix ALTERNATIVE_PRIORITY conflict with which
  2015-10-10  7:01 [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts Robert Yang
@ 2015-10-10  7:01 ` Robert Yang
  2015-10-10  7:01 ` [PATCH 2/5] console-tools: fix ALTERNATIVE_PRIORITY conflict with kbd Robert Yang
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Robert Yang @ 2015-10-10  7:01 UTC (permalink / raw)
  To: openembedded-core

Conflicts:
debianutils and which have the same priority 100 for which

Turn down debianutils' priority to fix the conflict, the larger set
of tools should use a lower priority.

[YOCTO #8477]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../debianutils/debianutils_4.5.1.bb               |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/debianutils/debianutils_4.5.1.bb b/meta/recipes-support/debianutils/debianutils_4.5.1.bb
index 6b665fb..77ab6da 100644
--- a/meta/recipes-support/debianutils/debianutils_4.5.1.bb
+++ b/meta/recipes-support/debianutils/debianutils_4.5.1.bb
@@ -34,7 +34,7 @@ FILES_${PN}-run-parts = "${base_bindir}/run-parts.debianutils"
 RDEPENDS_${PN} += "${PN}-run-parts"
 
 
-ALTERNATIVE_PRIORITY="100"
+ALTERNATIVE_PRIORITY="30"
 ALTERNATIVE_${PN} = "add-shell installkernel remove-shell savelog tempfile which"
 ALTERNATIVE_${PN}-run-parts = "run-parts"
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/5] console-tools: fix ALTERNATIVE_PRIORITY conflict with kbd
  2015-10-10  7:01 [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts Robert Yang
  2015-10-10  7:01 ` [PATCH 1/5] debianutils: fix ALTERNATIVE_PRIORITY conflict with which Robert Yang
@ 2015-10-10  7:01 ` Robert Yang
  2015-10-10  7:01 ` [PATCH 3/5] util-linux: fix ALTERNATIVE_PRIORITY conflict with ncurses procps and e2fsprogs Robert Yang
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Robert Yang @ 2015-10-10  7:01 UTC (permalink / raw)
  To: openembedded-core

Conflicts:
console-tools and kbd have the same priority 100 for chvt
console-tools and kbd have the same priority 100 for deallocvt
console-tools and kbd have the same priority 100 for fgconsole
console-tools and kbd have the same priority 100 for openvt

Turn down console-tools' priority to fix the conflict, the larger set
of tools should use a lower priority.

[YOCTO #8477]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 .../console-tools/console-tools_0.3.2.bb           |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/console-tools/console-tools_0.3.2.bb b/meta/recipes-core/console-tools/console-tools_0.3.2.bb
index c60a5a0..a9805b3 100644
--- a/meta/recipes-core/console-tools/console-tools_0.3.2.bb
+++ b/meta/recipes-core/console-tools/console-tools_0.3.2.bb
@@ -29,7 +29,7 @@ do_configure_prepend () {
 
 inherit autotools gettext update-alternatives
 
-ALTERNATIVE_PRIORITY = "100"
+ALTERNATIVE_PRIORITY = "30"
 
 bindir_progs = "chvt deallocvt fgconsole openvt"
 ALTERNATIVE_${PN} = "${bindir_progs}"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/5] util-linux: fix ALTERNATIVE_PRIORITY conflict with ncurses procps and e2fsprogs
  2015-10-10  7:01 [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts Robert Yang
  2015-10-10  7:01 ` [PATCH 1/5] debianutils: fix ALTERNATIVE_PRIORITY conflict with which Robert Yang
  2015-10-10  7:01 ` [PATCH 2/5] console-tools: fix ALTERNATIVE_PRIORITY conflict with kbd Robert Yang
@ 2015-10-10  7:01 ` Robert Yang
  2015-10-10  7:01 ` [PATCH 4/5] coreutils: fix ALTERNATIVE_PRIORITY conflict with procps and mktemp Robert Yang
  2015-10-10  7:01 ` [PATCH 5/5] gtk+3: fix ALTERNATIVE_PRIORITY conflict with gtk+ Robert Yang
  4 siblings, 0 replies; 6+ messages in thread
From: Robert Yang @ 2015-10-10  7:01 UTC (permalink / raw)
  To: openembedded-core

Conflicts:
util-linux and ncurses have the same priority 100 for reset
util-linux and procps have the same priority 100 for kill.1
util-linux and procps have the same priority 100 for kill
e2fsprogs and util-linux have the same priority 100 for libblkid.3
e2fsprogs and util-linux have the same priority 100 for blkid.8
e2fsprogs and util-linux have the same priority 100 for findfs.8
e2fsprogs and util-linux have the same priority 100 for fsck.8

Turn down util-linux' priority to fix the conflict, the larger set
of tools should use a lower priority.

[YOCTO #8477]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-core/util-linux/util-linux.inc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc
index 594108f..48d7e89 100644
--- a/meta/recipes-core/util-linux/util-linux.inc
+++ b/meta/recipes-core/util-linux/util-linux.inc
@@ -177,7 +177,7 @@ do_install_append_class-native () {
 	rm -f ${D}${base_sbindir}/nologin
 }
 
-ALTERNATIVE_PRIORITY = "100"
+ALTERNATIVE_PRIORITY = "50"
 
 ALTERNATIVE_${PN}  = "dmesg kill more mkswap blockdev pivot_root switch_root"
 ALTERNATIVE_${PN} += "mkfs.minix hexdump last lastb logger mesg renice wall"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/5] coreutils: fix ALTERNATIVE_PRIORITY conflict with procps and mktemp
  2015-10-10  7:01 [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts Robert Yang
                   ` (2 preceding siblings ...)
  2015-10-10  7:01 ` [PATCH 3/5] util-linux: fix ALTERNATIVE_PRIORITY conflict with ncurses procps and e2fsprogs Robert Yang
@ 2015-10-10  7:01 ` Robert Yang
  2015-10-10  7:01 ` [PATCH 5/5] gtk+3: fix ALTERNATIVE_PRIORITY conflict with gtk+ Robert Yang
  4 siblings, 0 replies; 6+ messages in thread
From: Robert Yang @ 2015-10-10  7:01 UTC (permalink / raw)
  To: openembedded-core

Conflicts:
coreutils and procps have the same priority 100 for kill.1
coreutils and procps have the same priority 100 for uptime.1
coreutils and procps have the same priority 100 for uptime
coreutils and procps have the same priority 100 for kill
coreutils and mktemp have the same priority 100 for mktemp

Turn down coreutils' priority to fix the conflict, the larger set
of tools should use a lower priority.

[YOCTO #8477]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-core/coreutils/coreutils_8.24.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/coreutils/coreutils_8.24.bb b/meta/recipes-core/coreutils/coreutils_8.24.bb
index 034ebcd..4519aab 100644
--- a/meta/recipes-core/coreutils/coreutils_8.24.bb
+++ b/meta/recipes-core/coreutils/coreutils_8.24.bb
@@ -91,7 +91,7 @@ do_install_append_class-native(){
 
 inherit update-alternatives
 
-ALTERNATIVE_PRIORITY = "100"
+ALTERNATIVE_PRIORITY = "30"
 ALTERNATIVE_${PN} = "lbracket ${bindir_progs} ${base_bindir_progs} ${sbindir_progs} base64 mktemp df"
 ALTERNATIVE_${PN}-doc = "base64.1 mktemp.1 df.1 lbracket.1 groups.1 kill.1 uptime.1 stat.1"
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 5/5] gtk+3: fix ALTERNATIVE_PRIORITY conflict with gtk+
  2015-10-10  7:01 [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts Robert Yang
                   ` (3 preceding siblings ...)
  2015-10-10  7:01 ` [PATCH 4/5] coreutils: fix ALTERNATIVE_PRIORITY conflict with procps and mktemp Robert Yang
@ 2015-10-10  7:01 ` Robert Yang
  4 siblings, 0 replies; 6+ messages in thread
From: Robert Yang @ 2015-10-10  7:01 UTC (permalink / raw)
  To: openembedded-core

Conflicts:
gtk+3 and gtk+ have the same priority 10 for gtk-update-icon-cache

Turn up gtk+3's priority to fix the conflict.

[YOCTO #8477]

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
 meta/recipes-gnome/gtk+/gtk+3.inc |    1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-gnome/gtk+/gtk+3.inc b/meta/recipes-gnome/gtk+/gtk+3.inc
index 558cdd7..5bbac07 100644
--- a/meta/recipes-gnome/gtk+/gtk+3.inc
+++ b/meta/recipes-gnome/gtk+/gtk+3.inc
@@ -92,6 +92,7 @@ PACKAGES_DYNAMIC += "^gtk3-immodule-.* ^gtk3-printbackend-.*"
 
 ALTERNATIVE_${PN} = "gtk-update-icon-cache"
 ALTERNATIVE_TARGET[gtk-update-icon-cache] = "${bindir}/gtk-update-icon-cache-3.0"
+ALTERNATIVE_PRIORITY = "30"
 
 python populate_packages_prepend () {
     import os.path
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-10-10  7:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-10  7:01 [PATCH 0/5] meta: fix ALTERNATIVE_PRIORITY conflicts Robert Yang
2015-10-10  7:01 ` [PATCH 1/5] debianutils: fix ALTERNATIVE_PRIORITY conflict with which Robert Yang
2015-10-10  7:01 ` [PATCH 2/5] console-tools: fix ALTERNATIVE_PRIORITY conflict with kbd Robert Yang
2015-10-10  7:01 ` [PATCH 3/5] util-linux: fix ALTERNATIVE_PRIORITY conflict with ncurses procps and e2fsprogs Robert Yang
2015-10-10  7:01 ` [PATCH 4/5] coreutils: fix ALTERNATIVE_PRIORITY conflict with procps and mktemp Robert Yang
2015-10-10  7:01 ` [PATCH 5/5] gtk+3: fix ALTERNATIVE_PRIORITY conflict with gtk+ Robert Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox