mirror of
https://git.yoctoproject.org/poky
synced 2026-03-12 10:19:44 +01:00
- netbase should only include etc-rpc, etc-protocols, etc-services and the hosts file - the init script/configuration files should be in another package (init-ifupdown) [YOCTO #2486] (From OE-Core rev: 5ce5c3d1226d4a8a4997c63acc1b1b125770d005) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
894 B
BlitzBasic
25 lines
894 B
BlitzBasic
SUMMARY = "Basic TCP/IP networking support"
|
|
DESCRIPTION = "This package provides the necessary infrastructure for basic TCP/IP based networking"
|
|
HOMEPAGE = "http://packages.debian.org/netbase"
|
|
SECTION = "base"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=3dd6192d306f582dee7687da3d8748ab"
|
|
PR = "r0"
|
|
PE = "1"
|
|
|
|
SRC_URI = "${DEBIAN_MIRROR}/main/n/netbase/netbase_${PV}.tar.gz \
|
|
file://hosts"
|
|
|
|
SRC_URI[md5sum] = "a379d9199d44d817543eddc211a29b70"
|
|
SRC_URI[sha256sum] = "ac9424d3cb2bd3c07b6c5bc5875c434d3bc687a73cd7c54b7dc7122308afa9dc"
|
|
|
|
do_install () {
|
|
install -d ${D}/${mandir}/man8 ${D}${sysconfdir}
|
|
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
|
|
}
|
|
|
|
CONFFILES_${PN} = "${sysconfdir}/hosts"
|