2012-10-07 10:37:50 +02:00
|
|
|
require linux.inc
|
|
|
|
|
|
|
|
DESCRIPTION = "Linux kernel for Allwinner a10 processors"
|
|
|
|
|
|
|
|
KERNEL_IMAGETYPE = "uImage"
|
|
|
|
|
|
|
|
COMPATIBLE_MACHINE = "(allwinner-a10)"
|
|
|
|
|
2012-10-17 19:21:01 +02:00
|
|
|
PR = "2"
|
2012-10-08 00:25:39 +02:00
|
|
|
|
2012-10-07 10:37:50 +02:00
|
|
|
PV = "3.0.42"
|
|
|
|
# Last tested version by myself"
|
2012-10-08 00:25:39 +02:00
|
|
|
SRCREV_pn-${PN} = "7003c80c6dbea815c4a78e745565ec03a039ba3a"
|
2012-10-07 10:37:50 +02:00
|
|
|
|
|
|
|
MACHINE_KERNEL_PR_append = "a"
|
|
|
|
|
|
|
|
SRC_URI += "git://github.com/amery/linux-allwinner.git;branch=allwinner-v3.0-android-v2;protocol=git \
|
2012-10-17 19:21:01 +02:00
|
|
|
file://0001-aufs3-kbuild.patch \
|
|
|
|
file://0002-aufs3-base.patch \
|
|
|
|
file://0003-aufs3-proc_map.patch \
|
|
|
|
file://0004-aufs3-standalone.patch \
|
|
|
|
file://fs \
|
|
|
|
file://aufs_type.h \
|
2012-10-07 10:37:50 +02:00
|
|
|
file://defconfig \
|
|
|
|
"
|
|
|
|
|
2012-10-08 00:25:39 +02:00
|
|
|
S = "${WORKDIR}/git"
|
2012-10-17 19:21:01 +02:00
|
|
|
|
|
|
|
#add AUFS stuff
|
|
|
|
do_copy_aufs () {
|
|
|
|
cp ${WORKDIR}/aufs_type.h ${S}/include/linux
|
|
|
|
cp -a ${WORKDIR}/fs ${S}/
|
|
|
|
}
|
|
|
|
|
|
|
|
addtask copy_aufs after do_unpack before do_patch
|