mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
(From OE-Core rev: 2ad87adf2cb4a93eeedfd77b486212e1364bc511) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
54 lines
1.9 KiB
BlitzBasic
54 lines
1.9 KiB
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"
|
|
|
|
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 \
|
|
file://init \
|
|
file://hosts \
|
|
file://interfaces \
|
|
file://nfsroot"
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/init.d \
|
|
${D}${sbindir} \
|
|
${D}${mandir}/man8 \
|
|
${D}${sysconfdir}/network/if-pre-up.d \
|
|
${D}${sysconfdir}/network/if-up.d \
|
|
${D}${sysconfdir}/network/if-down.d \
|
|
${D}${sysconfdir}/network/if-post-down.d
|
|
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 0644 ${WORKDIR}/interfaces ${D}${sysconfdir}/network/interfaces
|
|
install -m 0755 ${WORKDIR}/nfsroot ${D}${sysconfdir}/network/if-pre-up.d
|
|
|
|
# Disable network manager on machines that commonly do NFS booting
|
|
case "${MACHINE}" in
|
|
"qemuarm" | "qemux86" | "qemux86-64" | "qemumips" | "qemuppc" )
|
|
touch ${D}${sysconfdir}/network/nm-disabled-eth0
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
}
|
|
|
|
CONFFILES_${PN} = "${sysconfdir}/hosts ${sysconfdir}/network/interfaces"
|
|
|
|
PACKAGE_ARCH_qemuarm = "${MACHINE_ARCH}"
|
|
PACKAGE_ARCH_qemux86 = "${MACHINE_ARCH}"
|
|
PACKAGE_ARCH_qemux86-64 = "${MACHINE_ARCH}"
|
|
|
|
SRC_URI[md5sum] = "e15762f4a8280a62f7ddfea6093120f1"
|
|
SRC_URI[sha256sum] = "2fdee144112731ee0028fee2584cc82d664857ca7004c2eb59de7bda5b159838"
|