diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2006-09-12 22:58:52 +0000 |
---|---|---|
committer | Oyvind Repvik <nail@nslu2-linux.org> | 2006-09-12 22:58:52 +0000 |
commit | 966ff01f007b5fed26e168f870e43611f3cb0fc0 (patch) | |
tree | cdf400d1786ffd8250279360974243fb5f1c8a72 /packages/ixp4xx | |
parent | 268ffb5e9ed516784b18b9fcf45d2806e2da74f4 (diff) |
ixp4xx-npe: Add initial microcode compiler stuff
Diffstat (limited to 'packages/ixp4xx')
-rw-r--r-- | packages/ixp4xx/ixp4xx-npe_0.1.bb | 18 |
1 files changed, 18 insertions, 0 deletions
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 <nail@nslu2-linux.org>" +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/ +} |