From: Chunrong Guo Date: Tue, 17 Apr 2018 06:48:32 +0000 (+0800) Subject: linux-qoriq/4.9: support big endian X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=caff565e628bf14fae1e5b861c950550de1357d5;p=meta-freescale.git linux-qoriq/4.9: support big endian *kernel bigendian option is enabled Signed-off-by: Chunrong Guo Signed-off-by: Otavio Salvador --- diff --git a/recipes-kernel/linux/linux-qoriq_4.9.bb b/recipes-kernel/linux/linux-qoriq_4.9.bb index 7229b014..f6d29429 100644 --- a/recipes-kernel/linux/linux-qoriq_4.9.bb +++ b/recipes-kernel/linux/linux-qoriq_4.9.bb @@ -1,4 +1,4 @@ -inherit kernel qoriq_build_64bit_kernel +inherit kernel qoriq_build_64bit_kernel siteinfo inherit fsl-kernel-localversion SUMMARY = "Linux Kernel for Freescale QorIQ platforms" @@ -36,6 +36,12 @@ do_merge_delta_config() { # create .config with make config oe_runmake -C ${S} O=${B} ${KERNEL_DEFCONFIG} + # check if bigendian is enabled + if [ "${SITEINFO_ENDIANNESS}" = "be" ]; then + echo "CONFIG_CPU_BIG_ENDIAN=y" >> .config + echo "CONFIG_MTD_CFI_BE_BYTE_SWAP=y" >> .config + fi + # add config fragments for deltacfg in ${DELTA_KERNEL_DEFCONFIG}; do if [ -f ${S}/arch/${ARCH}/configs/${deltacfg} ]; then