From a5fbfff4aa8a2f0af4eefa9bc6431d2aa4358b2a Mon Sep 17 00:00:00 2001 From: "Daniel F. Dickinson" Date: Sun, 21 Jan 2018 18:34:54 -0500 Subject: [PATCH] openwrt-initramfs-init: Remove no longer needed hack openwrt-initramfs-init was just a hack to work around procd failing to allow an interative login after booting. procd init is now working, so remove this recipe. Signed-off-by: Daniel F. Dickinson --- .../openwrt-initramfs-init/init | 3 --- .../openwrt-initramfs-init_1.0.bb | 12 ------------ 2 files changed, 15 deletions(-) delete mode 100644 recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init/init delete mode 100644 recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init_1.0.bb diff --git a/recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init/init b/recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init/init deleted file mode 100644 index c3ae288..0000000 --- a/recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init/init +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -# Start procd -exec /sbin/init diff --git a/recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init_1.0.bb b/recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init_1.0.bb deleted file mode 100644 index f39dece..0000000 --- a/recipes-extended/openwrt-initramfs-init/openwrt-initramfs-init_1.0.bb +++ /dev/null @@ -1,12 +0,0 @@ -DESCRIPTION = "/init is a shell script that will find and mount the root \ -partition and execute /bin/sh" - -LICENSE = "CLOSED" - -SRC_URI += "file://init" - -do_install() { - install -Dm 0755 ${WORKDIR}/init ${D}/init -} - -FILES_${PN} = "/init"