From: Oyvind Repvik Date: Tue, 12 Sep 2006 22:58:52 +0000 (+0000) Subject: ixp4xx-npe: Add initial microcode compiler stuff X-Git-Tag: Release-2010-05/1~9453^2~834 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=966ff01f007b5fed26e168f870e43611f3cb0fc0;p=openembedded.git ixp4xx-npe: Add initial microcode compiler stuff --- diff --git a/packages/ixp4xx/ixp4xx-npe_0.1.bb b/packages/ixp4xx/ixp4xx-npe_0.1.bb new file mode 100644 index 0000000000..830c24fb02 --- /dev/null +++ b/packages/ixp4xx/ixp4xx-npe_0.1.bb @@ -0,0 +1,18 @@ +DESCRIPTION = "Firmware for the IXP4xx line of devices" +MAINTAINER = "Oyvind Repvik " +LICENSE = "Intel Public Licence" +PR = "r0" + +SRC_URI = "http://www.intel.com/Please-Read-The-BB-File/IPL_ixp400AccessLibrary-2_1.zip" +inherit native +S = ${WORKDIR}/ixp400_xscale_sw/src/npeDl + +do_compile() { + ${CC} -Wall IxNpeMicrocode.c -o IxNpeMicrocode + ${S}/IxNpeMicrocode +} + +do_install() { + install -d ${D}/usr/lib/firmware/NPE-B + install ${S}/NPE-B.010c0200 ${D}/usr/lib/firmware/NPE-B/ +}