blob: f7ff76476518dc23cdd1f18da7fd6ed7c7e4eb12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "Firmware converter for the IXP4xx line of devices"
LICENSE = "Intel Public Licence"
PR = "r3"
SRC_URI = "http://www.intel.com/Please-Read-The-BB-File/IPL_ixp400NpeLibrary-2_1.zip"
SRC_URI += "file://IxNpeMicrocode.h"
do_unpack[depends] += "unzip-native:do_populate_sysroot"
inherit native
S = "${WORKDIR}/ixp400_xscale_sw/src/npeDl"
do_compile() {
mv ${WORKDIR}/IxNpeMicrocode.h ${S}/
gcc -Wall IxNpeMicrocode.c -o IxNpeMicrocode
}
do_stage() {
mv ${S}/IxNpeMicrocode ${S}/IxNpeMicrocode-${PV}
install -d ${STAGING_BINDIR}/
install -m 0755 ${S}/IxNpeMicrocode-${PV} ${STAGING_BINDIR}/
}
|