-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux-iot2050: Update mainline recipe to work with current 6.x
We need to expand our defconfig by two switches: - CONFIG_EXPERT needs to be explicitly set now. It is required, e.g., to turn on CONFIG_GPIO_SYSFS. - CONFIG_AUTOFS4_FS was renamed to CONFIG_AUTOFS_FS. Signed-off-by: Jan Kiszka <[email protected]>
- Loading branch information
1 parent
9c250c8
commit 3c8ae4a
Showing
3 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Copyright (c) Siemens AG, 2020-2021 | ||
# Copyright (c) Siemens AG, 2020-2023 | ||
# | ||
# Authors: | ||
# Jan Kiszka <[email protected]> | ||
|
@@ -11,12 +11,11 @@ | |
require recipes-kernel/linux/linux-custom.inc | ||
|
||
SRC_URI += " \ | ||
git://github.com/siemens/linux.git;protocol=https;branch=${KERNEL_BRANCH};rev=${KERNEL_BRANCH} \ | ||
git://github.com/siemens/linux.git;protocol=https;branch=jan/iot2050 \ | ||
file://${KERNEL_DEFCONFIG} \ | ||
file://iot2050_defconfig_extra.cfg \ | ||
" | ||
|
||
KERNEL_BRANCH = "jan/iot2050" | ||
SRCREV = "${AUTOREV}" | ||
|
||
KERNEL_DEFCONFIG = "iot2050_defconfig_base" | ||
|
||
|