diff options
author | Matt Ranostay <mranostay@gmail.com> | 2013-08-08 04:02:54 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-08-16 12:58:29 +0200 |
commit | 1571aedb37e9e3abbf5cd3641eed762b8038cc39 (patch) | |
tree | 9705c32cb4f9339a66c98bea2943794cdf679be9 /meta-oe/recipes-extended | |
parent | af7ffe8bcd88270c0aebb212ee347061b21324d9 (diff) | |
download | meta-openembedded-1571aedb37e9e3abbf5cd3641eed762b8038cc39.tar.gz |
flashrom: Add flashrom recipe
Add flashrom recipe for managing recovery from bad UEFI updates.
Signed-off-by: Matt Ranostay <mranostay@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/flashrom/flashrom_0.9.6.1.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/flashrom/flashrom_0.9.6.1.bb b/meta-oe/recipes-extended/flashrom/flashrom_0.9.6.1.bb new file mode 100644 index 000000000..a1f0b303a --- /dev/null +++ b/meta-oe/recipes-extended/flashrom/flashrom_0.9.6.1.bb | |||
@@ -0,0 +1,15 @@ | |||
1 | DESCRIPTION = "flashrom is a utility for identifying, reading, writing, verifying and erasing flash chips" | ||
2 | LICENSE = "GPLv2" | ||
3 | HOMEPAGE = "http://flashrom.org" | ||
4 | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
6 | DEPENDS = "pciutils" | ||
7 | |||
8 | SRC_URI = "http://download.flashrom.org/releases/flashrom-${PV}.tar.bz2" | ||
9 | |||
10 | SRC_URI[md5sum] = "407e836c0a2b17ec76583cb6809f65e5" | ||
11 | SRC_URI[sha256sum] = "6f7b588cce74c90b4fe9c9c794de105de76e0323442fb5770b1aeab81e9d560a" | ||
12 | |||
13 | do_install() { | ||
14 | oe_runmake PREFIX=${prefix} DESTDIR=${D} install | ||
15 | } | ||