From: Michael-Luke Jones Date: Sat, 23 Sep 2006 15:35:01 +0000 (+0000) Subject: ixp4xx-npe: Update installation patch for 2.1 and 2.3 X-Git-Tag: Release-2010-05/1~9453^2~731 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c26ac145260f540095b52036dac1bdfb4b5e5c8b;p=openembedded.git ixp4xx-npe: Update installation patch for 2.1 and 2.3 --- diff --git a/packages/ixp4xx/ixp4xx-npe_2.1.bb b/packages/ixp4xx/ixp4xx-npe_2.1.bb index fc6576569d..ca89248fbb 100644 --- a/packages/ixp4xx/ixp4xx-npe_2.1.bb +++ b/packages/ixp4xx/ixp4xx-npe_2.1.bb @@ -1,20 +1,21 @@ DESCRIPTION = "NPE firmware for the IXP4xx line of devices" MAINTAINER = "Oyvind Repvik " LICENSE = "Intel Public Licence" -PR = "r3" +PR = "r4" DEPENDS = "ixp4xx-npe-native" SRC_URI = "http://www.intel.com/Please-Read-The-BB-File/IPL_ixp400NpeLibrary-2_1.zip" S = ${WORKDIR}/ixp400_xscale_sw/src/npeDl -FILES_${PN} = "${base_libdir}/firmware/NPE-B/NPE-B.010c0200" +FILES_${PN} = "${base_libdir}/firmware/NPE-B" do_compile() { ${STAGING_BINDIR}/IxNpeMicrocode } do_install() { - install -d ${D}/${base_libdir}/firmware/NPE-B - install ${S}/NPE-B.010c0200 ${D}/${base_libdir}/firmware/NPE-B/ + install -d ${D}/${base_libdir}/firmware/ + mv ${S}/NPE-B.010c0200 ${S}/NPE-B + install ${S}/NPE-B ${D}/${base_libdir}/firmware/ } diff --git a/packages/ixp4xx/ixp4xx-npe_2.3.bb b/packages/ixp4xx/ixp4xx-npe_2.3.bb index b0b27a6f99..5cc710ab69 100644 --- a/packages/ixp4xx/ixp4xx-npe_2.3.bb +++ b/packages/ixp4xx/ixp4xx-npe_2.3.bb @@ -1,13 +1,13 @@ DESCRIPTION = "NPE firmware for the IXP4xx line of devices" MAINTAINER = "Oyvind Repvik " LICENSE = "Intel Public Licence" -PR = "r2" +PR = "r3" DEPENDS = "ixp4xx-npe-native" SRC_URI = "http://www.intel.com/Please-Read-The-BB-File/IPL_ixp400NpeLibrary-2_3.zip" S = ${WORKDIR}/ixp400_xscale_sw/src/npeDl -FILES_${PN} = "${base_libdir}/firmware/NPE-B.010c0200" +FILES_${PN} = "${base_libdir}/firmware/NPE-B" do_compile() { ${STAGING_BINDIR}/IxNpeMicrocode @@ -15,6 +15,7 @@ do_compile() { do_install() { install -d ${D}/${base_libdir}/firmware/ - install ${S}/NPE-B.010c0200 ${D}/${base_libdir}/firmware/ + mv ${S}/NPE-B.010c0200 ${S}/NPE-B + install ${S}/NPE-B ${D}/${base_libdir}/firmware/ }