Commit fdadb2a0cdf7b67f67ef03beb6704fa24d2bd411

Authored by Eric Lee
1 parent 58047c6c1b

Fix HDMI hog line polarity error

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

recipes-kernel/linux/linux-smarcimx8m_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_8m_imx_4.19.35_1.1.0" 18 SRCBRANCH = "smarc_8m_imx_4.19.35_1.1.0"
19 19
20 LOCALVERSION = "-${SRCBRANCH}" 20 LOCALVERSION = "-${SRCBRANCH}"
21 KERNEL_DEFCONFIG = "${S}/arch/arm64/configs/smarcimx8m_defconfig" 21 KERNEL_DEFCONFIG = "${S}/arch/arm64/configs/smarcimx8m_defconfig"
22 DEFAULT_DTB = "fsl-smarcimx8mq" 22 DEFAULT_DTB = "fsl-smarcimx8mq"
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 = "da41c6f782cba0fac48938cbd4497806c7fbbedb" 26 SRCREV = "18ef61dfa30a90417728e4affc816ded040cd2fb"
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