diff options
author | 2013-05-18 16:11:03 -0700 | |
---|---|---|
committer | 2013-05-20 21:18:22 -0700 | |
commit | 1ca092e03fc7b87f5e1343ca829ed2a7218d8d4a (patch) | |
tree | e2873891614e5fd181e7e0ce04ac0efbd233443d /recipes-core | |
download | meta-minnow-0.9-rc2-danny-8.0.1.tar.gz meta-minnow-0.9-rc2-danny-8.0.1.tar.bz2 meta-minnow-0.9-rc2-danny-8.0.1.zip |
MinnowBoard BSP Layer0.9-rc2-danny-8.0.1
The MinnowBoard (minnowboard.org) is an Intel Atom E640T processor
coupled with an Intel EG20T Platform Controller Hub (Tunnel Creek +
Topcliff = Queens Bay). The E6xx CPU embeds on-chip graphics supported
by the Intel Embedded Media and Graphics Driver (EMGD). The board
targets the small and low-cost embedded market for the developer and
maker community.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/dmidecode/dmidecode_2.11.bb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes-core/dmidecode/dmidecode_2.11.bb b/recipes-core/dmidecode/dmidecode_2.11.bb new file mode 100644 index 0000000..7038913 --- /dev/null +++ b/recipes-core/dmidecode/dmidecode_2.11.bb @@ -0,0 +1,26 @@ +# Shamelessly copied from BlackPole/bp-openembedded +# https://github.com/BlackPole/bp-openembedded/blob/master/recipes/dmidecode/dmidecode_2.9.bb +# Updated to 2.11 +DESCRIPTION = "DMI (Desktop Management Interface) table related utilities" +HOMEPAGE = "http://www.nongnu.org/dmidecode/" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=393a5ca445f6965873eca0259a17f833" +PR = "r0" + +SRC_URI = "http://savannah.nongnu.org/download/dmidecode/${P}.tar.bz2" + +COMPATIBLE_HOST = "i.86.*-linux" + +do_unpack_extra() { +sed -i \ +-e '/^prefix/s:/usr/local:/usr:' \ +Makefile +} +addtask unpack_extra after do_unpack before do_patch + +do_install() { +oe_runmake DESTDIR="${D}" install +} + +SRC_URI[md5sum] = "535487cc041f2db746587cf40a2059f0" +SRC_URI[sha256sum] = "6da5643479b3b591b71a91122a25b89b77920b66e1ad0a5162d3c75b50423b51" |