blob: 308e23e89ccbd5bd0bc4819db620419c1b2b9e26 (
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
|
require linux-omap.inc
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/linux-omap2-git/${MACHINE}"
SRCREV = "e015fc7dba8f5002daa0982eb81d33cc72e68e95"
# The e105fc commit is the merge of 2.6.25 into the omap tree, so we leave of the +git part of PV
#PV = "2.6.25+git${SRCREV}"
PV = "2.6.25"
PR = "r4"
SRC_URI = "git://source.mvista.com/git/linux-omap-2.6.git;protocol=git \
file://defconfig"
SRC_URI_append_beagleboard = " \
file://2-update-omap3evm-kconfig.patch;patch=1 \
file://3-omap3evm-board.patch;patch=1 \
file://4-omap3evm-config.patch;patch=1 \
file://5-omap3evm-header.patch;patch=1 \
file://beagle-board-file.diff;patch=1 \
file://beagle-board-header.diff;patch=1 \
file://beagle-kconfig-makefile.diff;patch=1 \
file://add-beagle-sd-support.diff;patch=1 \
file://add-beagle-usb-support.diff;patch=1 \
"
COMPATIBLE_MACHINE = "omap2430sdp|omap2420h4|beagleboard"
S = "${WORKDIR}/git"
|