blob: 2a2754eb13657ba0fbed9d984467c1666f44d0f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
require linux.inc
DESCRIPTION = "Linux kernel for OMAP processors"
KERNEL_IMAGETYPE = "uImage"
COMPATIBLE_MACHINE = "omap3evm|am3517-evm"
SRCREV = "9abb6eb717acbca192ab251a056e3a66b2b47884"
# The main PR is now using MACHINE_KERNEL_PR, for omap3 see conf/machine/include/omap3.inc
PR_append = "+gitr${SRCREV}"
SRC_URI = "git://arago-project.org/git/people/sriram/ti-psp-omap.git;protocol=git;branch=int_030000_build3 \
file://0001-implement-TIF_RESTORE_SIGMASK-support-and-enable-the.patch;patch=1 \
file://defconfig"
S = "${WORKDIR}/git"
SRC_URI_append_am3517-evm = " \
file://shiva-bits.diff;patch=1 \
file://shiva-ehci.diff;patch=1 \
"
SRC_URI_append_omap3evm = " \
file://fix-twl-merge-damage.diff;patch=1 \
file://fix-section-mismatch.diff;patch=1 \
file://no-3517-hack.diff;patch=1 \
"
do_install_append() {
install -d ${D}/boot
install -m 0644 Documentation/arm/OMAP/DSS ${D}/boot/
}
PACKAGES =+ "omap-dss-doc"
FILES_omap-dss-doc = "/boot/DSS"
module_autoload_ohci-hcd_omap5912osk = "ohci-hcd"
|