Commit 45e0c7eadecc68c4d4a8a1be563cd5b631b1777f

Authored by Eric Lee
1 parent 810d3a036e

Fix Linux kernel device tree SD card detect pinmux bug.

Showing 1 changed file with 1 additions and 1 deletions Inline Diff

recipes-kernel/linux/linux-smarcimx8mm_4.19.35.bb
1 # Copyright (C) 2013-2016 Freescale Semiconductor 1 # Copyright (C) 2013-2016 Freescale Semiconductor
2 # Copyright 2017 NXP 2 # Copyright 2017 NXP
3 # Copyright 2018-2019 Embedian, Inc. 3 # Copyright 2018-2019 Embedian, Inc.
4 # Released under the MIT license (see COPYING.MIT for the terms) 4 # Released under the MIT license (see COPYING.MIT for the terms)
5 5
6 SUMMARY = "Linux kernel provided and supported by Embedian" 6 SUMMARY = "Linux kernel provided and supported by Embedian"
7 DESCRIPTION = "Linux kernel provided and supported by Embedian (based on the kernel imx_4.19.35_1.1.0 provided by NXP) \ 7 DESCRIPTION = "Linux kernel provided and supported by Embedian (based on the kernel imx_4.19.35_1.1.0 provided by NXP) \
8 with focus on i.MX Family SOMs. It includes support for many IPs such as GPU, VPU and IPU." 8 with focus on i.MX Family SOMs. It includes support for many IPs such as GPU, VPU and IPU."
9 9
10 require recipes-kernel/linux/linux-imx.inc 10 require recipes-kernel/linux/linux-imx.inc
11 11
12 LICENSE = "GPLv2" 12 LICENSE = "GPLv2"
13 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814" 13 LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
14 DEPENDS += "lzop-native bc-native" 14 DEPENDS += "lzop-native bc-native"
15 15
16 DEFAULT_PREFERENCE = "1" 16 DEFAULT_PREFERENCE = "1"
17 17
18 SRCBRANCH = "smarc_8mm_imx_4.19.35_1.1.0" 18 SRCBRANCH = "smarc_8mm_imx_4.19.35_1.1.0"
19 19
20 LOCALVERSION = "-${SRCBRANCH}" 20 LOCALVERSION = "-${SRCBRANCH}"
21 KERNEL_DEFCONFIG = "${S}/arch/arm64/configs/smarcimx8mm_defconfig" 21 KERNEL_DEFCONFIG = "${S}/arch/arm64/configs/smarcimx8mm_defconfig"
22 DEFAULT_DTB = "fsl-smarcimx8mm" 22 DEFAULT_DTB = "fsl-smarcimx8mm"
23 23
24 KERNEL_SRC ?= "git@git.embedian.com:developer/smarc-fsl-linux-kernel.git;protocol=git" 24 KERNEL_SRC ?= "git@git.embedian.com:developer/smarc-fsl-linux-kernel.git;protocol=git"
25 SRC_URI = "${EMB_KERNEL_MIRROR};protocol=ssh;branch=${SRCBRANCH}" 25 SRC_URI = "${EMB_KERNEL_MIRROR};protocol=ssh;branch=${SRCBRANCH}"
26 SRCREV = "2c05c9d42bd963a67f686e257a65acb0f7112c64" 26 SRCREV = "229d119e766994b550b7c08691d3932b54ee162f"
27 27
28 S = "${WORKDIR}/git" 28 S = "${WORKDIR}/git"
29 29
30 addtask copy_defconfig after do_patch before do_preconfigure 30 addtask copy_defconfig after do_patch before do_preconfigure
31 do_copy_defconfig () { 31 do_copy_defconfig () {
32 cp ${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig 32 cp ${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig
33 } 33 }
34 34
35 COMPATIBLE_MACHINE = "(mx6|mx7|mx8)" 35 COMPATIBLE_MACHINE = "(mx6|mx7|mx8)"
36 EXTRA_OEMAKE_append_mx8 = " ARCH=arm64" 36 EXTRA_OEMAKE_append_mx8 = " ARCH=arm64"
37 37