diff options
author | Darren Hart <dvhart@linux.intel.com> | 2013-05-01 14:16:31 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-03 16:16:48 +0100 |
commit | 120495843118b55e865bb8d87933bd585fced992 (patch) | |
tree | abe8c3278ac972427eb221435895d608cd93916b /meta | |
parent | b1dc91969f9bb0c2a3a4336f5e9a2f57aabb9f78 (diff) | |
download | openembedded-core-120495843118b55e865bb8d87933bd585fced992.tar.gz openembedded-core-120495843118b55e865bb8d87933bd585fced992.tar.bz2 openembedded-core-120495843118b55e865bb8d87933bd585fced992.zip |
dmidecode: Add dmidecode to dev tools
Dmidecode reports information about your system's hardware as described
in your system BIOS according to the SMBIOS/DMI standard.
This recipe was updated to version 2.12 and cleaned up slightly from the
OE 2.10 version and proposed here for inclusion in oe-core.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/dmidecode/dmidecode_2.12.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb new file mode 100644 index 0000000000..bdddf30c46 --- /dev/null +++ b/meta/recipes-devtools/dmidecode/dmidecode_2.12.bb @@ -0,0 +1,21 @@ +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|x86_64).*-linux" + +do_install() { + oe_runmake DESTDIR="${D}" install +} + +do_unpack_extra() { + sed -i -e '/^prefix/s:/usr/local:${exec_prefix}:' Makefile +} +addtask unpack_extra after do_unpack before do_patch + +SRC_URI[md5sum] = "a406f3cbb27736491698697beeddb781" +SRC_URI[sha256sum] = "913ff3055d563a62a420789b8ee33b038de9afa18ea61254760ddf8ab87a5088" |