blob: d84bd09d31075bbc8bb15f37132f93d8dd56f63c [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
32LICENSE_PATH += "${LAYERDIR}/licenses"
33
34SIGGEN_EXCLUDERECIPES_ABISAFE += " \
35 mplayer-common \
36 fbset-modes \
37 gpsd-machine-conf \
38 distro-feed-configs \
39 ca-certificates \
Patrick Williamsddad1a12017-02-23 20:36:32 -060040 pointercal \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050041"
42
43SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050044 android-tools->android-tools-conf \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050045 usb-modeswitch-data->usb-modeswitch \
46 lmsensors->lmsensors-config \
47 phoronix-test-suite->bash \
48 phoronix-test-suite->python \
49 phoronix-test-suite->php \
50"
51
52# ttf.inc inherits fontcache which adds fontconfig-utils to RDEPENDS
53SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += " \
54 terminus-font->fontconfig \
Patrick Williamsddad1a12017-02-23 20:36:32 -060055 ttf-abyssinica->fontconfig \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050056 ttf-arphic-uming->fontconfig \
57 ttf-dejavu->fontconfig \
58 ttf-droid->fontconfig \
59 ttf-gentium->fontconfig \
60 ttf-hunkyfonts->fontconfig \
61 ttf-inconsolata->fontconfig \
62 ttf-liberation->fontconfig \
Patrick Williamsddad1a12017-02-23 20:36:32 -060063 ttf-liberation-sans-narrow->fontconfig \
64 ttf-lklug->fontconfig \
65 ttf-lohit->fontconfig \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050066 ttf-pt-sans->fontconfig \
67 ttf-mplus->fontconfig \
68 ttf-sazanami->fontconfig \
69 ttf-tlwg->fontconfig \
70 ttf-ubuntu-font-family->fontconfig \
Patrick Williamsddad1a12017-02-23 20:36:32 -060071 ttf-vlgothic->fontconfig \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050072 ttf-wqy-zenhei->fontconfig \
73 source-han-sans-cn-fonts->fontconfig \
74 source-han-sans-jp-fonts->fontconfig \
75 source-han-sans-kr-fonts->fontconfig \
76 source-han-sans-tw-fonts->fontconfig \
77"