mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 14:28:22 +01:00
84758b7f78
Add 2 new machines : olinuxino-a13 for olimex A13 borads mele for Mele a1000/a20000 products
43 lines
936 B
BlitzBasic
43 lines
936 B
BlitzBasic
require linux.inc
|
|
|
|
DESCRIPTION = "Linux kernel for Allwinner a10 processors"
|
|
|
|
KERNEL_IMAGETYPE = "uImage"
|
|
|
|
COMPATIBLE_MACHINE = "(mele|olinuxino-a13)"
|
|
|
|
PR = "5"
|
|
|
|
PV = "3.0.57"
|
|
# Last tested version by myself"
|
|
SRCREV_pn-${PN} = "3358ff60249126be7bc4ec300cfbd0ea83d535a0"
|
|
|
|
MACHINE_KERNEL_PR_append = "a"
|
|
|
|
SRC_URI += "git://github.com/linux-sunxi/linux-sunxi.git;branch=sunxi-3.0;protocol=git \
|
|
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 \
|
|
file://defconfig \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
#add AUFS stuff
|
|
do_copy_aufs () {
|
|
cp ${WORKDIR}/aufs_type.h ${S}/include/linux
|
|
cp -a ${WORKDIR}/fs ${S}/
|
|
rm -rf ${S}/modules/wifi
|
|
}
|
|
|
|
do_package_prepend() {
|
|
|
|
}
|
|
|
|
addtask copy_aufs after do_unpack before do_patch
|
|
|
|
INSANE_SKIP_kernel-dev = "debug-files debug-deps"
|