1HOMEPAGE = "https://github.com/open-power"
2LICENSE = "Apache-2.0"
3
4SRC_URI += "git://github.com/open-power/skiboot.git;branch=skiboot-6.5.x;protocol=https"
5
6FILESEXTRAPATHS:prepend := "${THISDIR}/skiboot:"
7
8LIC_FILES_CHKSUM = "file://${S}/LICENCE;md5=3b83ef96387f14655fc854ddc3c6bd57"
9
10SRCREV = "aff9301bb341b5387228e82036a7d72e519d8855"
11PV = "6.5.1+git${SRCPV}"
12
13S = "${WORKDIR}/git"
14
15EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SKIBOOT_VERSION=${PV} V=1"
16
17SKIBOOT_SUBDIR ?= "external/${PN}"
18
19do_compile() {
20    oe_runmake -C ${SKIBOOT_SUBDIR} all
21}
22
23# TODO: remove PREFIX=$prefix when updating to a version that has
24# http://patchwork.ozlabs.org/patch/923741/ is merged upstream
25do_install() {
26    oe_runmake -C ${SKIBOOT_SUBDIR} install DESTDIR=${D} prefix=/usr PREFIX=$prefix
27}
28
29# libflash.so is a SONAME and is strongly required in the production
30INSANE_SKIP:${PN}:append = "dev-so"
31FILES_SOLIBSDEV = ""
32FILES:${PN}:append = " ${libdir}/libflash.so"
33