diff options
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto-tiny_3.19.bb | 21 | ||||
-rw-r--r-- | meta/recipes-kernel/linux/linux-yocto_3.19.bb | 39 |
2 files changed, 60 insertions, 0 deletions
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.19.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.19.bb new file mode 100644 index 0000000000..dba163e006 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.19.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | KBRANCH ?= "standard/tiny/base" | ||
2 | LINUX_KERNEL_TYPE = "tiny" | ||
3 | KCONFIG_MODE = "--allnoconfig" | ||
4 | |||
5 | require recipes-kernel/linux/linux-yocto.inc | ||
6 | |||
7 | LINUX_VERSION ?= "3.19" | ||
8 | |||
9 | KMETA = "meta" | ||
10 | |||
11 | SRCREV_machine ?= "43b9eced9ba8a57add36af07736344dcc383f711" | ||
12 | SRCREV_meta ?= "8897ef68b30e7426bc1d39895e71fb155d694974" | ||
13 | |||
14 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
15 | |||
16 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.19.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta" | ||
17 | |||
18 | COMPATIBLE_MACHINE = "(qemux86)" | ||
19 | |||
20 | # Functionality flags | ||
21 | KERNEL_FEATURES = "" | ||
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.19.bb b/meta/recipes-kernel/linux/linux-yocto_3.19.bb new file mode 100644 index 0000000000..044ee7f524 --- /dev/null +++ b/meta/recipes-kernel/linux/linux-yocto_3.19.bb | |||
@@ -0,0 +1,39 @@ | |||
1 | KBRANCH ?= "standard/base" | ||
2 | |||
3 | require recipes-kernel/linux/linux-yocto.inc | ||
4 | |||
5 | # board specific branches | ||
6 | KBRANCH_qemuarm ?= "standard/arm-versatile-926ejs" | ||
7 | KBRANCH_qemuarm64 ?= "standard/qemuarm64" | ||
8 | KBRANCH_qemumips ?= "standard/mti-malta32" | ||
9 | KBRANCH_qemuppc ?= "standard/qemuppc" | ||
10 | KBRANCH_qemux86 ?= "standard/common-pc" | ||
11 | KBRANCH_qemux86-64 ?= "standard/common-pc-64/base" | ||
12 | KBRANCH_qemumips64 ?= "standard/mti-malta64" | ||
13 | |||
14 | SRCREV_machine_qemuarm ?= "91b64df8cdcdacb9ef8d707a0c34f55a09bf170d" | ||
15 | SRCREV_machine_qemuarm64 ?= "43b9eced9ba8a57add36af07736344dcc383f711" | ||
16 | SRCREV_machine_qemumips ?= "7c67469a4c77a977c46f218de7e2f4699292d28b" | ||
17 | SRCREV_machine_qemuppc ?= "7dc29d4265b44ad28ea3ec950b1a86be08933ce8" | ||
18 | SRCREV_machine_qemux86 ?= "43b9eced9ba8a57add36af07736344dcc383f711" | ||
19 | SRCREV_machine_qemux86-64 ?= "43b9eced9ba8a57add36af07736344dcc383f711" | ||
20 | SRCREV_machine_qemumips64 ?= "b7ab9d4bac55415f125c81f529dbbefb07de98ad" | ||
21 | SRCREV_machine ?= "43b9eced9ba8a57add36af07736344dcc383f711" | ||
22 | SRCREV_meta ?= "8897ef68b30e7426bc1d39895e71fb155d694974" | ||
23 | |||
24 | SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.19.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta" | ||
25 | |||
26 | LINUX_VERSION ?= "3.19" | ||
27 | |||
28 | PV = "${LINUX_VERSION}+git${SRCPV}" | ||
29 | |||
30 | KMETA = "meta" | ||
31 | |||
32 | COMPATIBLE_MACHINE = "qemuarm|qemuarm64|qemux86|qemuppc|qemumips|qemumips64|qemux86-64" | ||
33 | |||
34 | # Functionality flags | ||
35 | KERNEL_EXTRA_FEATURES ?= "features/netfilter/netfilter.scc" | ||
36 | KERNEL_FEATURES_append = " ${KERNEL_EXTRA_FEATURES}" | ||
37 | KERNEL_FEATURES_append_qemux86=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
38 | KERNEL_FEATURES_append_qemux86-64=" cfg/sound.scc cfg/paravirt_kvm.scc" | ||
39 | KERNEL_FEATURES_append = " ${@bb.utils.contains("TUNE_FEATURES", "mx32", " cfg/x32.scc", "" ,d)}" | ||