meta-arm.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/6] arm-bsp: Update kernel recipes to match upstream format
@ 2021-08-09 23:05 Jon Mason
  2021-08-09 23:05 ` [PATCH 2/6] arm-bsp: update 5.6 Linux kernel recipe to 5.6.19 Jon Mason
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Jon Mason @ 2021-08-09 23:05 UTC (permalink / raw)
  To: meta-arm

Using recipes-kernel/linux/linux-yocto_5.4.bb as a guide, format the
kernel recipes to match.  This enables easier diffing and updating.

Signed-off-by: Jon Mason <jon.mason@arm.com>
---
 meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.3.bb | 11 +++++++++--
 meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.6.bb | 11 +++++++++--
 meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.7.bb | 10 ++++++++--
 3 files changed, 26 insertions(+), 6 deletions(-)

diff --git a/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.3.bb b/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.3.bb
index 9d5e9ce..036cb00 100644
--- a/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.3.bb
+++ b/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.3.bb
@@ -1,4 +1,4 @@
-KBRANCH = "v5.3/base"
+KBRANCH ?= "v5.3/standard/base"
 
 require recipes-kernel/linux/linux-yocto.inc
 
@@ -8,8 +8,15 @@ SRCREV_meta = "8d0ed83a864cc91eef4d2abbc90f13d4ecd1c213"
 SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.4;destsuffix=${KMETA}"
 
-LINUX_VERSION = "5.3.18"
 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
+LINUX_VERSION = "5.3.18"
+
+DEPENDS += "openssl-native util-linux-native"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
+
 KMETA = "kernel-meta"
+KCONF_BSP_AUDIT_LEVEL = "1"
+
+# Functionality flags
+KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
diff --git a/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.6.bb b/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.6.bb
index d17cb30..33e6dd9 100644
--- a/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.6.bb
+++ b/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.6.bb
@@ -1,4 +1,4 @@
-KBRANCH = "v5.6/base"
+KBRANCH ?= "v5.6/standard/base"
 
 require recipes-kernel/linux/linux-yocto.inc
 
@@ -8,8 +8,15 @@ SRCREV_meta = "b152cd93ea7046a835c869a76085aefdb6ce7421"
 SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.6;destsuffix=${KMETA}"
 
-LINUX_VERSION = "5.6.14"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
+LINUX_VERSION = "5.6.14"
+
+DEPENDS += "openssl-native util-linux-native"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
+
 KMETA = "kernel-meta"
+KCONF_BSP_AUDIT_LEVEL = "1"
+
+# Functionality flags
+KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
diff --git a/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.7.bb b/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.7.bb
index 12eaa59..81b602d 100644
--- a/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.7.bb
+++ b/meta-arm-bsp/recipes-kernel/linux/linux-yocto_5.7.bb
@@ -1,4 +1,4 @@
-KBRANCH = "v5.7/base"
+KBRANCH ?= "v5.7/standard/base"
 
 require recipes-kernel/linux/linux-yocto.inc
 
@@ -8,9 +8,15 @@ SRCREV_meta = "b9e6fd082dc5bfb51699809d7119d4b20d280c0b"
 SRC_URI = "git://git.yoctoproject.org/linux-yocto.git;name=machine;branch=${KBRANCH}; \
            git://git.yoctoproject.org/yocto-kernel-cache;type=kmeta;name=meta;branch=yocto-5.7;destsuffix=${KMETA}"
 
-LINUX_VERSION = "5.7.19"
 LIC_FILES_CHKSUM = "file://COPYING;md5=6bc538ed5bd9a7fc9398086aedcd7e46"
+LINUX_VERSION = "5.7.19"
+
+DEPENDS += "openssl-native util-linux-native"
 
 PV = "${LINUX_VERSION}+git${SRCPV}"
+
 KMETA = "kernel-meta"
+KCONF_BSP_AUDIT_LEVEL = "1"
 
+# Functionality flags
+KERNEL_FEATURES:append = " ${KERNEL_EXTRA_FEATURES}"
-- 
2.17.1


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

end of thread, other threads:[~2021-08-10 12:54 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-09 23:05 [PATCH 1/6] arm-bsp: Update kernel recipes to match upstream format Jon Mason
2021-08-09 23:05 ` [PATCH 2/6] arm-bsp: update 5.6 Linux kernel recipe to 5.6.19 Jon Mason
2021-08-09 23:05 ` [PATCH 3/6] sgi575: remove redundant entry Jon Mason
2021-08-09 23:05 ` [PATCH 4/6] n1sdp: use upstream tunes file Jon Mason
2021-08-09 23:05 ` [PATCH 5/6] arm: remove support for hardknott and older Jon Mason
2021-08-09 23:05 ` [PATCH 6/6] CI: Remove qemuarmv5 parselog workaround Jon Mason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).