diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-07-07 13:24:05 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-07-07 13:24:05 +0000 |
commit | ff0e28efe32b6211561fd26cc43adcc9565ecdb8 (patch) | |
tree | 3a6784dfbbeb1ae0046e33a4ab0ff76b3487aef8 /packages/ixp4xx/ixp4xx-npe_2.3.2.bb | |
parent | 8a7dab3b89ab53e094dd9b462cca8c6395c881a9 (diff) |
ixp4xx-npe: Now builds NPE-C as well as NPE-B ethernet microcode.
Diffstat (limited to 'packages/ixp4xx/ixp4xx-npe_2.3.2.bb')
-rw-r--r-- | packages/ixp4xx/ixp4xx-npe_2.3.2.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/ixp4xx/ixp4xx-npe_2.3.2.bb b/packages/ixp4xx/ixp4xx-npe_2.3.2.bb index 3a13074240..b5b1665735 100644 --- a/packages/ixp4xx/ixp4xx-npe_2.3.2.bb +++ b/packages/ixp4xx/ixp4xx-npe_2.3.2.bb @@ -1,6 +1,6 @@ DESCRIPTION = "NPE firmware for the IXP4xx line of devices" LICENSE = "Intel Public Licence" -PR = "r0" +PR = "r1" DEPENDS = "ixp4xx-npe-native" # You need to download the IPL_ixp400NpeLibrary-2_3_2.zip file (without crypto) from: @@ -13,7 +13,7 @@ S = "${WORKDIR}/ixp400_xscale_sw/src/npeDl" COMPATIBLE_MACHINE = "(nslu2|ixp4xx)" -FILES_${PN} = "${base_libdir}/firmware/NPE-B" +FILES_${PN} = "${base_libdir}/firmware/NPE-B ${base_libdir}/firmware/NPE-C" do_compile() { ${STAGING_BINDIR_NATIVE}/IxNpeMicrocode-${PV} -be @@ -24,10 +24,14 @@ do_install() { rm ${S}/NPE-B mv ${S}/NPE-B.* ${S}/NPE-B install ${S}/NPE-B ${D}/${base_libdir}/firmware/ + rm ${S}/NPE-C + mv ${S}/NPE-C.* ${S}/NPE-C + install ${S}/NPE-C ${D}/${base_libdir}/firmware/ } do_populate_staging() { install -d ${STAGING_FIRMWARE_DIR} install ${S}/NPE-B ${STAGING_FIRMWARE_DIR}/ + install ${S}/NPE-C ${STAGING_FIRMWARE_DIR}/ } |