From 15d9ea1913fe0043cf3d580f7fa2673db6df66aa Mon Sep 17 00:00:00 2001 From: Rod Whitby Date: Fri, 14 Apr 2006 07:51:19 +0000 Subject: ixp425-eth: Removed the maclist patch, as insertion of the MAC address is now done through a netdev event. --- packages/ixp425-eth/ixp400-eth_1.5.bb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'packages') diff --git a/packages/ixp425-eth/ixp400-eth_1.5.bb b/packages/ixp425-eth/ixp400-eth_1.5.bb index 99851a8c12..4430e295fb 100644 --- a/packages/ixp425-eth/ixp400-eth_1.5.bb +++ b/packages/ixp425-eth/ixp400-eth_1.5.bb @@ -4,7 +4,7 @@ MAINTAINER = "NSLU2 Linux " HOMEPAGE = "http://www.intel.com/design/network/products/npfamily/ixp420.htm" LICENSE = "GPL" -PR = "r9" +PR = "r10" DEPENDS = "ixp4xx-csr" RDEPENDS = "ixp4xx-csr" @@ -15,7 +15,6 @@ SRC_URI += "file://2.6.15.patch;patch=1" SRC_URI += "file://device-name.patch;patch=1" SRC_URI += "file://poll-controller.patch;patch=1" SRC_URI += "file://le.patch;patch=1" -SRC_URI += "file://mac-address.patch;patch=1" SRC_URI += "file://int-random.patch;patch=1" SRC_URI += "file://stop-on-rmmod.patch;patch=1" SRC_URI += "file://continue-if-qmgr-init-fails.patch;patch=1" -- cgit v1.2.3 From a625a8ec7fbcfe1f07db49b898918cd9267e7a9b Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Mon, 24 Apr 2006 12:55:50 +0000 Subject: gcc-package: apply patch form #851 to 'fix' building of gcc-4.x --- packages/gcc/gcc-package.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'packages') diff --git a/packages/gcc/gcc-package.inc b/packages/gcc/gcc-package.inc index b31a209b34..4dcc72e879 100644 --- a/packages/gcc/gcc-package.inc +++ b/packages/gcc/gcc-package.inc @@ -67,7 +67,7 @@ do_install () { rm -r ${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/install-tools # Hack around specs file assumptions - sed -i -e '/^*cross_compile:$/ { n; s/1/0/; }' ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/specs + sed -i -e '/^*cross_compile:$/ { n; s/1/0/; }' ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/specs &>/dev/null || true # Move libgcc_s into /lib mkdir -p ${D}${base_libdir} @@ -79,7 +79,8 @@ do_install () { ${D}${libdir}/gcc/${TARGET_SYS}/${BINV}/libgcc_s.so # We don't need libtool libraries - rm ${D}${libdir}/libg2c.la + rm ${D}${libdir}/libg2c.la &>/dev/null || true + # Cleanup manpages.. rm -r ${D}${mandir}/man7 -- cgit v1.2.3