diff options
| author | Chris Patterson <cjp256@gmail.com> | 2015-02-04 17:18:53 +1000 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-02-20 21:17:04 -0500 |
| commit | 31cceea813c806ca8b4f14de305b2ebc53fdf426 (patch) | |
| tree | 3411f67f858e012f61fa181e6d46216bb5d1648a /recipes-extended/vgabios | |
| parent | 88fb26f65474d6927fcf490585b1ea4baa4199f6 (diff) | |
| download | meta-virtualization-31cceea813c806ca8b4f14de305b2ebc53fdf426.tar.gz | |
xen: break out firmware bits
Added recipes for various xen firmware components:
- ipxe
- seabios
- vgabios
Signed-off-by: Chris Patterson <cjp256@gmail.com>
Signed-off-by: Eric Chanudet <eric.chanudet@gmail.com>
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
Diffstat (limited to 'recipes-extended/vgabios')
| -rw-r--r-- | recipes-extended/vgabios/vgabios_0.7a.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-extended/vgabios/vgabios_0.7a.bb b/recipes-extended/vgabios/vgabios_0.7a.bb new file mode 100644 index 00000000..6addeffe --- /dev/null +++ b/recipes-extended/vgabios/vgabios_0.7a.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | DESCRIPTION = "Plex86/Bochs LGPL VGABios" | ||
| 2 | HOMEPAGE = "http://www.nongnu.org/vgabios/" | ||
| 3 | LICENSE = "LGPLv2.1" | ||
| 4 | SECTION = "firmware" | ||
| 5 | DEPENDS = "" | ||
| 6 | |||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=dcf3c825659e82539645da41a7908589" | ||
| 8 | DEPENDS = "" | ||
| 9 | |||
| 10 | SRC_URI = "http://savannah.gnu.org/download/vgabios/${PN}-${PV}.tgz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "2c0fe5c0ca08082a9293e3a7b23dc900" | ||
| 13 | SRC_URI[sha256sum] = "9d24c33d4bfb7831e2069cf3644936a53ef3de21d467872b54ce2ea30881b865" | ||
| 14 | |||
| 15 | PR = "r0" | ||
| 16 | |||
| 17 | FILES_${PN} = "/usr/share/firmware/${PN}-${PV}*.bin" | ||
| 18 | FILES_${PN}-dbg = "/usr/share/firmware/${PN}-${PV}*.debug.bin" | ||
| 19 | |||
| 20 | S = "${WORKDIR}/${PN}-${PV}" | ||
| 21 | |||
| 22 | do_configure() { | ||
| 23 | echo "Skip do_configure" | ||
| 24 | } | ||
| 25 | |||
| 26 | do_install() { | ||
| 27 | install -d ${D}/usr/share/firmware | ||
| 28 | install -m 0644 VGABIOS-lgpl-latest.bin ${D}/usr/share/firmware/${PN}-${PV}.bin | ||
| 29 | install -m 0644 VGABIOS-lgpl-latest.cirrus.bin ${D}/usr/share/firmware/${PN}-${PV}.cirrus.bin | ||
| 30 | } | ||
| 31 | |||
