From ef19afdc80edc80d76dbbc8a5de5a5b994ff718d Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Mon, 12 Dec 2022 23:05:54 -0500 Subject: [PATCH] linux-libc-headers: add 6.x fetch location The next libc-headers bumps will be in the 6.x series, so we udpate our fetching list to handle that major version number. Signed-off-by: Bruce Ashfield Signed-off-by: Alexandre Belloni --- meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc index 71778bb4e36..3a8d32e7857 100644 --- a/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc +++ b/meta/recipes-kernel/linux-libc-headers/linux-libc-headers.inc @@ -44,6 +44,8 @@ python __anonymous () { d.setVar("HEADER_FETCH_VER", "4.x") elif major == "5": d.setVar("HEADER_FETCH_VER", "5.x") + elif major == "6": + d.setVar("HEADER_FETCH_VER", "6.x") else: d.setVar("HEADER_FETCH_VER", "2.6") } -- 2.47.3