diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-10-11 10:14:21 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-10-11 10:14:21 +0000 |
commit | 7b832cf420f3a7f41edd94778e249c4ea52fa615 (patch) | |
tree | 79b24f2f866fd4e930994f272ae7a5680d286763 /packages/linux | |
parent | 0f2f623da0cccd2eae320f9353bd915cc59a5af3 (diff) |
add machine configuration and linux kernel for the HTC Blueangel
patch courtesy Ian Jordan <immolo@lycos.co.uk>
Diffstat (limited to 'packages/linux')
-rw-r--r-- | packages/linux/xanadux-ba-2.6_2.6.12.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/linux/xanadux-ba-2.6_2.6.12.bb b/packages/linux/xanadux-ba-2.6_2.6.12.bb new file mode 100644 index 0000000000..7935fe7196 --- /dev/null +++ b/packages/linux/xanadux-ba-2.6_2.6.12.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "Xanadux Blueangel kernel based on the hh 2.6.12" +MAINTAINER = "Ian Jordan <immolo@lycos.co.uk>" +LICENSE = "GPL" +PR="r0" + +SRC_URI = "cvs://anonymous@cvs.sourceforge.net/cvsroot/xanadux;method=pserver;module=linux-2.6-xda;tag=K2-6-12-hh2-xda0-ba0" +S = "${WORKDIR}/linux-2.6-xda" + +COMPATIBLE_HOST = "arm.*-linux" + +inherit kernel + +do_configure() { + cp arch/arm/configs/blueangel_defconfig .config || die "No default configuration for ${MACHINE} available." + yes '' | oe_runmake oldconfig +} + |