diff options
author | Justin Patrin <papercrane@gmail.com> | 2006-01-13 18:26:10 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-13 18:26:10 +0000 |
commit | e523c03092fc6cfeda92b045a4d188b328267930 (patch) | |
tree | d7e3f9b624cb642b58492bc459ad3066bb976f68 /packages/ixp425-eth/ixp425-eth_1.1.bb | |
parent | 1f1964e9b57efb6ec63ab857c25aa5f9a9836e88 (diff) | |
parent | 20938adc193b05ec07f801b9ed5e4c2a6c4a73c9 (diff) |
merge of 464cb51e4f1333becda8dfa1ccf4f9bbcea5514f
and b3735f13f3bb7c2565ab1e628c79b04596773c15
Diffstat (limited to 'packages/ixp425-eth/ixp425-eth_1.1.bb')
-rw-r--r-- | packages/ixp425-eth/ixp425-eth_1.1.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/packages/ixp425-eth/ixp425-eth_1.1.bb b/packages/ixp425-eth/ixp425-eth_1.1.bb index 7f55bcec3b..53e713178a 100644 --- a/packages/ixp425-eth/ixp425-eth_1.1.bb +++ b/packages/ixp425-eth/ixp425-eth_1.1.bb @@ -10,7 +10,8 @@ SRC_URI = "http://www.intel.com/design/network/swsup/ixp400LinuxEthernetDriverPa file://mm4.patch;patch=1" SRC_URI += "file://2.6.13.patch;patch=1" SRC_URI += "file://2.6.14.patch;patch=1" -PR = "r12" +SRC_URI += "file://modprobe.conf" +PR = "r15" RDEPENDS = "ixp4xx-csr" @@ -19,6 +20,7 @@ S = "${WORKDIR}" COMPATIBLE_HOST = "^armeb-linux.*" PROVIDES = "virtual/ixp-eth" +RPROVIDES = "ixp-eth" inherit module @@ -46,4 +48,6 @@ do_compile () { do_install () { install -d ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/net install -m 0644 ixp425_eth.ko ${D}${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers/net/ + install -d ${D}${sysconfdir}/modprobe.d + install -m 0644 modprobe.conf ${D}${sysconfdir}/modprobe.d/eth0 } |