angstrom-next: Populate blacklist using PNBLACKLIST

blacklist class is now moved into OE-Core with some changes
lets use the new blacklist method.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Khem Raj
2012-08-28 14:03:05 -07:00
parent cfb9ceb30c
commit 02beb5fd00
3 changed files with 8 additions and 9 deletions

View File

@@ -114,13 +114,12 @@ PREFERRED_PROVIDER_opkg ?= "opkg"
PREFERRED_PROVIDER_opkg-native ?= "opkg-native"
PREFERRED_PROVIDER_udev = "systemd"
ANGSTROM_BLACKLIST_pn-fso-apm = "regular apmd is good enough"
ANGSTROM_BLACKLIST_pn-gconf-dbus = "gconf-dbus has been merged back into main GConf"
ANGSTROM_BLACKLIST_pn-gconf-dbus-native = "gconf-dbus has been merged back into main GConf"
ANGSTROM_BLACKLIST_pn-ffmpeg = "libav is preferred over ffmpeg"
# blacklist policy
PNBLACKLIST[pn-fso-apm] = "regular apmd is good enough"
PNBLACKLIST[gconf-dbus] = "gconf-dbus has been merged back into main GConf"
PNBLACKLIST[gconf-dbus-native] = "gconf-dbus has been merged back into main GConf"
PNBLACKLIST[ffmpeg] = "libav is preferred over ffmpeg"
require conf/distro/include/angstrom.inc
@@ -185,7 +184,7 @@ DISTRO_EXTRA_RRECOMMENDS += " \
SPLASH ?= ' ${@base_contains("MACHINE_FEATURES", "screen", "psplash-angstrom", "",d)}'
DISTRO_FEATURES += "${LDISGOLD}"
LDISGOLD_arm = "ld-is-gold"
#LDISGOLD_arm = "ld-is-gold"
LDISGOLD_x86 = "ld-is-gold"
LDISGOLD_x86_64 = "ld-is-gold"
LDISGOLD = ""

View File

@@ -1,5 +1,5 @@
# eglibc:
ANGSTROM_BLACKLIST_pn-libiconv = "the eglibc provided iconv library is used"
PNBLACKLIST[libiconv] = "the eglibc provided iconv library is used"
TARGET_OS = "linux"

View File

@@ -1,7 +1,7 @@
# glibc:
require conf/distro/include/glibc-${TOOLCHAIN_TYPE}.inc
ANGSTROM_BLACKLIST_pn-libiconv = "the glibc provided iconv library is used"
PNBLACKLIST[libiconv] = "the glibc provided iconv library is used"
TARGET_OS = "linux"
TARGET_OS .= "${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1) in ['arm', 'armeb']]}"