From eb8dc40360f0cfef56fb6947cc817a547d6d9bc6 Mon Sep 17 00:00:00 2001 From: Dave Cobbley Date: Tue, 14 Aug 2018 10:05:37 -0700 Subject: [Subtree] Removing import-layers directory As part of the move to subtrees, need to bring all the import layers content to the top level. Change-Id: I4a163d10898cbc6e11c27f776f60e1a470049d8f Signed-off-by: Dave Cobbley Signed-off-by: Brad Bishop --- .../init-ifupdown/init-ifupdown_1.0.bb | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 poky/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb (limited to 'poky/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb') diff --git a/poky/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb b/poky/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb new file mode 100644 index 000000000..733ae41f2 --- /dev/null +++ b/poky/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb @@ -0,0 +1,41 @@ +SUMMARY = "Basic TCP/IP networking init scripts and configuration files" +DESCRIPTION = "This package provides high level tools to configure network interfaces" +HOMEPAGE = "http://packages.debian.org/ifupdown" +SECTION = "base" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://${WORKDIR}/copyright;md5=3dd6192d306f582dee7687da3d8748ab" +PR = "r7" + +inherit update-rc.d + +INITSCRIPT_NAME = "networking" +INITSCRIPT_PARAMS = "start 01 2 3 4 5 . stop 80 0 6 1 ." + +SRC_URI = "file://copyright \ + file://init \ + file://interfaces \ + file://nfsroot" + +S = "${WORKDIR}" + +do_install () { + install -d ${D}${sysconfdir}/init.d \ + ${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}/interfaces ${D}${sysconfdir}/network/interfaces + install -m 0755 ${WORKDIR}/nfsroot ${D}${sysconfdir}/network/if-pre-up.d +} + +do_install_append_qemuall () { + # Disable network manager on machines that commonly do NFS booting + touch ${D}${sysconfdir}/network/nm-disabled-eth0 +} + +PACKAGE_ARCH_qemuall = "${MACHINE_ARCH}" +RDEPENDS_${PN} = "netbase" +RCONFLICTS_${PN} = "netbase (< 1:5.0)" + +CONFFILES_${PN} = "${sysconfdir}/network/interfaces" -- cgit v1.2.3