forked from 96boards/meta-96boards
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux-generic-lsk-test: add 4.4 and 4.9 test branches
Signed-off-by: Fathi Boudra <[email protected]>
- Loading branch information
Showing
2 changed files
with
195 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
require linux.inc | ||
require kselftests.inc | ||
|
||
DESCRIPTION = "Generic 4.4 LSK test kernel" | ||
|
||
PV = "4.4+git${SRCPV}" | ||
SRCREV_kernel = "f397aef40aba7dd9af66611d6d9b47e4d3c28c2f" | ||
SRCREV_FORMAT = "kernel" | ||
|
||
SRC_URI = "\ | ||
git://git.linaro.org/kernel/linux-linaro-stable.git;protocol=https;branch=linux-linaro-lsk-v4.4-test;name=kernel \ | ||
file://distro-overrides.config;subdir=git/kernel/configs \ | ||
file://systemd.config;subdir=git/kernel/configs \ | ||
file://0001-selftests-create-test-specific-kconfig-fragments.patch \ | ||
file://0001-selftests-lib-add-config-fragment-for-bitmap-printf-.patch \ | ||
file://0001-selftests-ftrace-add-CONFIG_KPROBES-y-to-the-config-.patch \ | ||
file://0001-selftests-vm-add-CONFIG_SYSVIPC-y-to-the-config-frag.patch \ | ||
file://0001-selftests-create-cpufreq-kconfig-fragments.patch \ | ||
file://0001-selftests-sync-add-config-fragment-for-testing-sync-.patch \ | ||
" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
COMPATIBLE_MACHINE = "am57xx-evm|intel-core2-32|juno" | ||
KERNEL_DEVICETREE_remove_juno = "arm/juno-r2.dtb" | ||
KERNEL_IMAGETYPE ?= "Image" | ||
KERNEL_CONFIG_FRAGMENTS += "\ | ||
${S}/kernel/configs/distro-overrides.config \ | ||
${S}/kernel/configs/systemd.config \ | ||
" | ||
|
||
# make[3]: *** [scripts/extract-cert] Error 1 | ||
DEPENDS += "openssl-native" | ||
HOST_EXTRACFLAGS += "-I${STAGING_INCDIR_NATIVE}" | ||
|
||
do_configure() { | ||
# While kernel.bbclass has an architecture mapping, we can't use it because | ||
# the kernel config file has a different name. | ||
case "${HOST_ARCH}" in | ||
aarch64) | ||
cp ${S}/arch/arm64/configs/lsk_defconfig ${B}/.config | ||
echo 'CONFIG_RTC_DRV_PL031=y' >> ${B}/.config | ||
echo 'CONFIG_STUB_CLK_HI6220=y' >> ${B}/.config | ||
;; | ||
arm) | ||
cp ${S}/arch/arm/configs/lsk_defconfig ${B}/.config | ||
echo 'CONFIG_SERIAL_8250_OMAP=y' >> ${B}/.config | ||
echo 'CONFIG_POSIX_MQUEUE=y' >> ${B}/.config | ||
;; | ||
x86_64) | ||
cp ${S}/arch/x86/configs/x86_64_defconfig ${B}/.config | ||
echo 'CONFIG_IGB=y' >> ${B}/.config | ||
;; | ||
esac | ||
|
||
# Check for kernel config fragments. The assumption is that the config | ||
# fragment will be specified with the absolute path. For example: | ||
# * ${WORKDIR}/config1.cfg | ||
# * ${S}/config2.cfg | ||
# Iterate through the list of configs and make sure that you can find | ||
# each one. If not then error out. | ||
# NOTE: If you want to override a configuration that is kept in the kernel | ||
# with one from the OE meta data then you should make sure that the | ||
# OE meta data version (i.e. ${WORKDIR}/config1.cfg) is listed | ||
# after the in-kernel configuration fragment. | ||
# Check if any config fragments are specified. | ||
if [ ! -z "${KERNEL_CONFIG_FRAGMENTS}" ]; then | ||
for f in ${KERNEL_CONFIG_FRAGMENTS}; do | ||
# Check if the config fragment was copied into the WORKDIR from | ||
# the OE meta data | ||
if [ ! -e "$f" ]; then | ||
echo "Could not find kernel config fragment $f" | ||
exit 1 | ||
fi | ||
done | ||
|
||
# Now that all the fragments are located merge them. | ||
( cd ${WORKDIR} && ${S}/scripts/kconfig/merge_config.sh -m -r -O ${B} ${B}/.config ${KERNEL_CONFIG_FRAGMENTS} 1>&2 ) | ||
fi | ||
|
||
# Since kselftest-merge target isn't available, merge the individual | ||
# selftests config fragments included in the kernel source tree | ||
( cd ${WORKDIR} && ${S}/scripts/kconfig/merge_config.sh -m -r -O ${B} ${B}/.config ${S}/tools/testing/selftests/*/config 1>&2 ) | ||
|
||
oe_runmake -C ${S} O=${B} olddefconfig | ||
|
||
bbplain "Saving defconfig to:\n${B}/defconfig" | ||
oe_runmake -C ${B} savedefconfig | ||
} | ||
|
||
do_deploy_append() { | ||
cp -a ${B}/defconfig ${DEPLOYDIR} | ||
cp -a ${B}/.config ${DEPLOYDIR}/config | ||
cp -a ${B}/vmlinux ${DEPLOYDIR} | ||
cp ${T}/log.do_compile ${T}/log.do_compile_kernelmodules ${DEPLOYDIR} | ||
} | ||
|
||
require machine-specific-hooks.inc |
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 |
---|---|---|
@@ -0,0 +1,97 @@ | ||
require linux.inc | ||
require kselftests.inc | ||
|
||
DESCRIPTION = "Generic 4.9 LSK test kernel" | ||
|
||
PV = "4.9+git${SRCPV}" | ||
SRCREV_kernel = "a27e72a62c09eebc54bbd8db5afc338d2e956c37" | ||
SRCREV_FORMAT = "kernel" | ||
|
||
SRC_URI = "\ | ||
git://git.linaro.org/kernel/linux-linaro-stable.git;protocol=https;branch=linux-linaro-lsk-v4.9-test;name=kernel \ | ||
file://distro-overrides.config;subdir=git/kernel/configs \ | ||
file://systemd.config;subdir=git/kernel/configs \ | ||
file://0001-selftests-lib-add-config-fragment-for-bitmap-printf-.patch \ | ||
file://0001-selftests-ftrace-add-CONFIG_KPROBES-y-to-the-config-.patch \ | ||
file://0001-selftests-vm-add-CONFIG_SYSVIPC-y-to-the-config-frag.patch \ | ||
file://0001-selftests-gpio-add-config-fragment-for-gpio-mockup.patch \ | ||
file://0001-selftests-create-cpufreq-kconfig-fragments.patch \ | ||
file://0001-selftests-sync-add-config-fragment-for-testing-sync-.patch \ | ||
" | ||
|
||
S = "${WORKDIR}/git" | ||
|
||
COMPATIBLE_MACHINE = "am57xx-evm|dragonboard-410c|hikey|intel-core2-32|juno" | ||
KERNEL_IMAGETYPE ?= "Image" | ||
KERNEL_CONFIG_FRAGMENTS += "\ | ||
${S}/kernel/configs/distro-overrides.config \ | ||
${S}/kernel/configs/systemd.config \ | ||
" | ||
|
||
# make[3]: *** [scripts/extract-cert] Error 1 | ||
DEPENDS += "openssl-native" | ||
HOST_EXTRACFLAGS += "-I${STAGING_INCDIR_NATIVE}" | ||
|
||
do_configure() { | ||
# While kernel.bbclass has an architecture mapping, we can't use it because | ||
# the kernel config file has a different name. | ||
case "${HOST_ARCH}" in | ||
aarch64) | ||
cp ${S}/arch/arm64/configs/lsk_defconfig ${B}/.config | ||
echo 'CONFIG_STUB_CLK_HI6220=y' >> ${B}/.config | ||
;; | ||
arm) | ||
cp ${S}/arch/arm/configs/lsk_defconfig ${B}/.config | ||
echo 'CONFIG_SERIAL_8250_OMAP=y' >> ${B}/.config | ||
echo 'CONFIG_POSIX_MQUEUE=y' >> ${B}/.config | ||
;; | ||
x86_64) | ||
cp ${S}/arch/x86/configs/x86_64_defconfig ${B}/.config | ||
echo 'CONFIG_IGB=y' >> ${B}/.config | ||
;; | ||
esac | ||
|
||
# Make sure to enable NUMA | ||
echo 'CONFIG_NUMA=y' >> ${B}/.config | ||
|
||
# Check for kernel config fragments. The assumption is that the config | ||
# fragment will be specified with the absolute path. For example: | ||
# * ${WORKDIR}/config1.cfg | ||
# * ${S}/config2.cfg | ||
# Iterate through the list of configs and make sure that you can find | ||
# each one. If not then error out. | ||
# NOTE: If you want to override a configuration that is kept in the kernel | ||
# with one from the OE meta data then you should make sure that the | ||
# OE meta data version (i.e. ${WORKDIR}/config1.cfg) is listed | ||
# after the in-kernel configuration fragment. | ||
# Check if any config fragments are specified. | ||
if [ ! -z "${KERNEL_CONFIG_FRAGMENTS}" ]; then | ||
for f in ${KERNEL_CONFIG_FRAGMENTS}; do | ||
# Check if the config fragment was copied into the WORKDIR from | ||
# the OE meta data | ||
if [ ! -e "$f" ]; then | ||
echo "Could not find kernel config fragment $f" | ||
exit 1 | ||
fi | ||
done | ||
|
||
# Now that all the fragments are located merge them. | ||
( cd ${WORKDIR} && ${S}/scripts/kconfig/merge_config.sh -m -r -O ${B} ${B}/.config ${KERNEL_CONFIG_FRAGMENTS} 1>&2 ) | ||
fi | ||
|
||
oe_runmake -C ${S} O=${B} olddefconfig | ||
|
||
oe_runmake -C ${S} O=${B} kselftest-merge | ||
|
||
bbplain "Saving defconfig to:\n${B}/defconfig" | ||
oe_runmake -C ${B} savedefconfig | ||
} | ||
|
||
do_deploy_append() { | ||
cp -a ${B}/defconfig ${DEPLOYDIR} | ||
cp -a ${B}/.config ${DEPLOYDIR}/config | ||
cp -a ${B}/vmlinux ${DEPLOYDIR} | ||
cp ${T}/log.do_compile ${T}/log.do_compile_kernelmodules ${DEPLOYDIR} | ||
} | ||
|
||
require machine-specific-hooks.inc |