diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-11-13 12:34:53 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2006-11-13 12:34:53 +0000 |
commit | 08909e266ff89c24516dd382c883ce59410bed89 (patch) | |
tree | 2eebc2fb1dc625062d0d82c557247cb3eaf40d33 /packages/ixp4xx | |
parent | 279ef404201ddecaf1401b8b412c7128a323179e (diff) |
ixp4xx-npe: Now stages the firmware for later use.
Diffstat (limited to 'packages/ixp4xx')
-rw-r--r-- | packages/ixp4xx/ixp4xx-npe_2.3.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/ixp4xx/ixp4xx-npe_2.3.bb b/packages/ixp4xx/ixp4xx-npe_2.3.bb index 039308ac47..dcff23b645 100644 --- a/packages/ixp4xx/ixp4xx-npe_2.3.bb +++ b/packages/ixp4xx/ixp4xx-npe_2.3.bb @@ -1,6 +1,6 @@ DESCRIPTION = "NPE firmware for the IXP4xx line of devices" LICENSE = "Intel Public Licence" -PR = "r6" +PR = "r8" DEPENDS = "ixp4xx-npe-native" SRC_URI = "http://www.intel.com/Please-Read-The-BB-File/IPL_ixp400NpeLibrary-2_3.zip" @@ -26,3 +26,8 @@ do_install() { install ${S}/NPE-B ${D}/${base_libdir}/firmware/ } +do_populate_staging() { + install -d ${STAGING_FIRMWARE_DIR} + install ${S}/NPE-B ${STAGING_FIRMWARE_DIR}/ +} + |