summaryrefslogtreecommitdiffstats
path: root/recipes-extended/seabios/seabios_1.14.0.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-05-09 09:19:15 -0700
committerBruce Ashfield <bruce.ashfield@gmail.com>2022-05-09 13:08:06 -0400
commit6a43be4c3e1b0cbac196776eac7c3ed5f3db7fa8 (patch)
tree9e10138831b99832356da196e29d2723860204f9 /recipes-extended/seabios/seabios_1.14.0.bb
parent27e5ade0abc2660226389b8b62ef07d85f4b8758 (diff)
downloadmeta-virtualization-6a43be4c3e1b0cbac196776eac7c3ed5f3db7fa8.tar.gz
seabios: Upgrade to 1.16 release
Pin to use gcc as compiler always Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-extended/seabios/seabios_1.14.0.bb')
-rw-r--r--recipes-extended/seabios/seabios_1.14.0.bb47
1 files changed, 0 insertions, 47 deletions
diff --git a/recipes-extended/seabios/seabios_1.14.0.bb b/recipes-extended/seabios/seabios_1.14.0.bb
deleted file mode 100644
index a090756e..00000000
--- a/recipes-extended/seabios/seabios_1.14.0.bb
+++ /dev/null
@@ -1,47 +0,0 @@
1DESCRIPTION = "SeaBIOS"
2HOMEPAGE = "http://www.coreboot.org/SeaBIOS"
3LICENSE = "LGPL-3.0-only"
4SECTION = "firmware"
5
6inherit python3native
7
8SRC_URI = " \
9 https://www.seabios.org/downloads/seabios-${PV}.tar.gz \
10 file://hostcc.patch \
11 file://python3.patch \
12 "
13S = "${WORKDIR}/${PN}-${PV}"
14
15LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
16 file://COPYING.LESSER;md5=6a6a8e020838b23406c81b19c1d46df6 \
17 "
18
19SRC_URI[md5sum] = "9df3b7de6376850d09161137e7a9b61f"
20SRC_URI[sha256sum] = "eb70cc62b29aa83e10a653233acebf4bb154d00d0c87dc2a2c6e2da75e5e81fd"
21
22FILES:${PN} = "/usr/share/firmware"
23
24DEPENDS += "util-linux-native file-native bison-native flex-native gettext-native acpica-native"
25
26TUNE_CCARGS = ""
27EXTRA_OEMAKE += "HOSTCC='${BUILD_CC}'"
28EXTRA_OEMAKE += "CROSS_PREFIX=${TARGET_PREFIX}"
29
30COMPATIBLE_HOST = "(i.86|x86_64).*-linux"
31
32do_configure() {
33 oe_runmake defconfig
34}
35
36do_compile() {
37 unset CPP
38 unset CPPFLAGS
39 oe_runmake
40}
41
42do_install() {
43 oe_runmake
44 install -d ${D}/usr/share/firmware
45 install -m 0644 out/bios.bin ${D}/usr/share/firmware/
46}
47