From 1206aa00bf4bf7ef3630e7edc6add7c83addc8ae Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 3 Feb 2011 14:50:18 +0100 Subject: linux-bug20-linaro_2.6.35: Add experimental recipe --- recipes/linux/linux-bug20-linaro_2.6.35.bb | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 recipes/linux/linux-bug20-linaro_2.6.35.bb diff --git a/recipes/linux/linux-bug20-linaro_2.6.35.bb b/recipes/linux/linux-bug20-linaro_2.6.35.bb new file mode 100644 index 0000000000..6f1bafe5d8 --- /dev/null +++ b/recipes/linux/linux-bug20-linaro_2.6.35.bb @@ -0,0 +1,42 @@ +require linux.inc + +DESCRIPTION = "Linux kernel for BUG20 based on the Linaro kernel tree" +KERNEL_IMAGETYPE = "uImage" + +COMPATIBLE_MACHINE = "bug20" + +PR = "r0" + +SRCREV = "be4f840306ef858cffc182cde38714f9423bdeb3" + + +SRC_URI = "git://github.com/buglabs/bug20-2.6.35-linaro.git;branch=master;protocol=git" + +S = "${WORKDIR}/git" + +do_configure_prepend() { + cp arch/arm/configs/omap3_buglabs_defconfig ${WORKDIR}/defconfig +} + +do_configure_append() { + sed -i -e "s/CONFIG_LOCALVERSION=\"\"/CONFIG_LOCALVERSION=\"-${PR}\"/g" ${S}/.config +} + +# Make BMI header files available for JNI +do_install_append() { + install -d ${D}${includedir}/linux/bmi/ + install -m 0644 ${S}/include/linux/bmi/*.h ${D}${includedir}/linux/bmi/ + + install -d ${D}${sysconfdir}/ + echo "BUG Kernel Information" > ${D}${sysconfdir}/kernelinfo + date >> ${D}${sysconfdir}/kernelinfo + whoami >> ${D}${sysconfdir}/kernelinfo + echo "git rev: ${SRCREV}" >> ${D}${sysconfdir}/kernelinfo +} + +PACKAGES += "kernel-headers" +FILES_kernel-headers = "${includedir}/linux/bmi" +FILES_kernel-image += "${sysconfdir}/kernelinfo" + +module_conf_g_file_storage = "options g_file_storage file=/dev/mmcblk1 removable=y" +module_autoload_g_file_storage = "g_file_storage" -- cgit 1.2.3-korg