blob: 507ac50eca1d285b0692237a9047135b09cfd1f7 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001# It really depends on order of the layers appearing in BBLAYERS
2# variable in toplevel bblayers.conf file, where bitbake will search
3# for .inc files and others where bitbake uses BBPATH since it will
4# search the directories from first to last as specified in BBPATH
5# Therefore if you want a given layer to be considered high priority
6# for the .inc and .conf etc. then consider it adding at the beginning
7# of BBPATH. For bblayers bitbake will use BBFILES_PRIORITY to resolve
8# the recipe contention so the order of directories in BBFILES does
9# not matter.
10
11# We have a conf and classes directory, append to BBPATH
12BBPATH .= ":${LAYERDIR}"
13
14# We have a recipes directory, add to BBFILES
15BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
16
17BBFILE_COLLECTIONS += "openembedded-layer"
18BBFILE_PATTERN_openembedded-layer := "^${LAYERDIR}/"
19
20# Define the priority for recipes (.bb files) from this layer,
21# choosing carefully how this layer interacts with all of the
22# other layers.
23
24BBFILE_PRIORITY_openembedded-layer = "6"
25
26# This should only be incremented on significant changes that will
27# cause compatibility issues with other layers
28LAYERVERSION_openembedded-layer = "1"
29
30LAYERDEPENDS_openembedded-layer = "core"
31
Brad Bishop19323692019-04-05 15:28:33 -040032LAYERSERIES_COMPAT_openembedded-layer = "thud warrior"
Brad Bishop316dfdd2018-06-25 12:45:53 -040033
Patrick Williamsb48b7b42016-08-17 15:04:38 -050034LICENSE_PATH += "${LAYERDIR}/licenses"
35
36SIGGEN_EXCLUDERECIPES_ABISAFE += " \
37 mplayer-common \
38 fbset-modes \
39 gpsd-machine-conf \
40 distro-feed-configs \
41 ca-certificates \
Patrick Williamsddad1a12017-02-23 20:36:32 -060042 pointercal \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050043"
44
45SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050046 android-tools->android-tools-conf \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050047 usb-modeswitch-data->usb-modeswitch \
48 lmsensors->lmsensors-config \
49 phoronix-test-suite->bash \
50 phoronix-test-suite->python \
51 phoronix-test-suite->php \
52"
53
Brad Bishopba6de432019-05-21 08:07:33 -040054# Depends on ndctl (through nvdimm PACKAGECONFIG) which depends on MACHINE_ARCH kernel
55# and making libblockdev MACHINE_ARCH is not an option as python3-blivet, udisks2, gvfs
56# would be MACHINE_ARCH as well
57SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
58 libblockdev->ndctl \
59"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050060# ttf.inc inherits fontcache which adds fontconfig-utils to RDEPENDS
61SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
62 terminus-font->fontconfig \
Patrick Williamsddad1a12017-02-23 20:36:32 -060063 ttf-abyssinica->fontconfig \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050064 ttf-arphic-uming->fontconfig \
65 ttf-dejavu->fontconfig \
66 ttf-droid->fontconfig \
67 ttf-gentium->fontconfig \
68 ttf-hunkyfonts->fontconfig \
69 ttf-inconsolata->fontconfig \
70 ttf-liberation->fontconfig \
Patrick Williamsddad1a12017-02-23 20:36:32 -060071 ttf-liberation-sans-narrow->fontconfig \
72 ttf-lklug->fontconfig \
73 ttf-lohit->fontconfig \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050074 ttf-pt-sans->fontconfig \
75 ttf-mplus->fontconfig \
76 ttf-sazanami->fontconfig \
77 ttf-tlwg->fontconfig \
78 ttf-ubuntu-font-family->fontconfig \
Patrick Williamsddad1a12017-02-23 20:36:32 -060079 ttf-vlgothic->fontconfig \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050080 ttf-wqy-zenhei->fontconfig \
81 source-han-sans-cn-fonts->fontconfig \
82 source-han-sans-jp-fonts->fontconfig \
83 source-han-sans-kr-fonts->fontconfig \
84 source-han-sans-tw-fonts->fontconfig \
85"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080086
87DEFAULT_TEST_SUITES_pn-meta-oe-ptest-image = " ${PTESTTESTSUITE}"