diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
commit | 2b8f679ffe5929b5a11eb71e514aa4997c36f13e (patch) | |
tree | cab0f25aca03f6162bd268a401945fbfbb63bff9 /netbase | |
parent | 5df179157f90b18f437c6978efb451f515e3d1c9 (diff) |
Merges.
2004/05/22 12:46:48-04:00 local!kergoth
Bugfixes per the recent FILESDIR cleanup.
2004/05/22 01:03:38-04:00 local!kergoth
Run a perl script against the repo to kill off direct FILESDIR usage
in favor of relative file:// paths in SRC_URI, and WORKDIR references
in functions.
2004/05/21 23:07:58-04:00 local!kergoth
Switch file:// FILESDIR uris in SRC_URI to the new relative path format.
BKrev: 40af8428aNyDLBX0MRtyso3VCpMv1w
Diffstat (limited to 'netbase')
-rw-r--r-- | netbase/netbase_4.16.oe | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/netbase/netbase_4.16.oe b/netbase/netbase_4.16.oe index 3b56947386..0f51337e75 100644 --- a/netbase/netbase_4.16.oe +++ b/netbase/netbase_4.16.oe @@ -9,7 +9,12 @@ inherit update-rc.d INITSCRIPT_NAME = "networking" INITSCRIPT_PARAMS = "start 40 S . stop 40 0 6 1 ." -SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz" +SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz \ + file://options \ + file://init \ + file://hosts \ + file://epia/interfaces \ + file://interfaces" do_install () { install -d ${D}/${sysconfdir}/init.d \ @@ -19,13 +24,13 @@ do_install () { ${D}/${sysconfdir}/network/if-up.d \ ${D}/${sysconfdir}/network/if-down.d \ ${D}/${sysconfdir}/network/if-post-down.d - install -m 0644 ${FILESDIR}/options ${D}/${sysconfdir}/network/options - install -m 0755 ${FILESDIR}/init ${D}/${sysconfdir}/init.d/networking - install -m 0644 ${FILESDIR}/hosts ${D}/${sysconfdir}/hosts + install -m 0644 ${WORKDIR}/options ${D}/${sysconfdir}/network/options + install -m 0755 ${WORKDIR}/init ${D}/${sysconfdir}/init.d/networking + install -m 0644 ${WORKDIR}/hosts ${D}/${sysconfdir}/hosts install -m 0644 etc-rpc ${D}/${sysconfdir}/rpc install -m 0644 etc-protocols ${D}/${sysconfdir}/protocols install -m 0644 etc-services ${D}/${sysconfdir}/services install -m 0755 update-inetd ${D}/${sbindir}/ install -m 0644 update-inetd.8 ${D}/${mandir}/man8/ - oe_machinstall -m 0644 ${FILESDIR}/interfaces ${D}/${sysconfdir}/network/interfaces + oe_machinstall -m 0644 ${WORKDIR}/interfaces ${D}/${sysconfdir}/network/interfaces } |