blob: 757d63d5a2f7fd2616f381361350b0bb3b3920fe [file] [log] [blame]
Patrick Williams5a844b12016-08-05 15:42:22 -05001HOMEPAGE = "https://github.com/open-power"
2LICENSE = "Apache-2.0"
3
4SRC_URI += "git://github.com/open-power/skiboot.git"
5
6LIC_FILES_CHKSUM = "file://${S}/LICENCE;md5=3b83ef96387f14655fc854ddc3c6bd57"
7
8SRCREV = "skiboot-5.3.0"
9PV = "5.3.0"
10
11S = "${WORKDIR}/git"
12
13EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SKIBOOT_VERSION=${PV} V=1"
14
15SKIBOOT_SUBDIR ?= "external/${PN}"
16
17do_compile() {
18 oe_runmake -C ${SKIBOOT_SUBDIR} all
19}
20
21do_install() {
22 oe_runmake -C ${SKIBOOT_SUBDIR} install DESTDIR=${D} PREFIX=${D}/usr
23}
24
25BBCLASSEXTEND = "native nativesdk"