From 2c9fb03aad0108f3ff2713de568632a117227c10 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Wed, 15 May 2013 21:57:19 -0700 Subject: tiny-init: Drop the bbappend init file which it was providing is ditto as meta-yocto so bbappend is redundant plus it gets rid of following warning for non poky distros. WARNING: No recipes available for: /builds1/meta-intel/meta-fri2/recipes-core/tiny-init/tiny-init.bbappend Signed-off-by: Khem Raj CC: Darren Hart Acked-by: Darren Hart Signed-off-by: Tom Zanussi --- .../recipes-core/tiny-init/tiny-init.bbappend | 6 ----- meta-fri2/recipes-core/tiny-init/tiny-init/init | 26 ---------------------- 2 files changed, 32 deletions(-) delete mode 100644 meta-fri2/recipes-core/tiny-init/tiny-init.bbappend delete mode 100644 meta-fri2/recipes-core/tiny-init/tiny-init/init (limited to 'meta-fri2/recipes-core') diff --git a/meta-fri2/recipes-core/tiny-init/tiny-init.bbappend b/meta-fri2/recipes-core/tiny-init/tiny-init.bbappend deleted file mode 100644 index 89416dc2..00000000 --- a/meta-fri2/recipes-core/tiny-init/tiny-init.bbappend +++ /dev/null @@ -1,6 +0,0 @@ -# Update the init script for the tiny image to manually mount devtmpfs and -# ensure the ttyPCH1 device is available for the console. - -FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" - -PRINC := "${@int(PRINC) + 1}" diff --git a/meta-fri2/recipes-core/tiny-init/tiny-init/init b/meta-fri2/recipes-core/tiny-init/tiny-init/init deleted file mode 100644 index 4b78f017..00000000 --- a/meta-fri2/recipes-core/tiny-init/tiny-init/init +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh - -# Mount the Linux kernel virtual filesystems -mount none -t proc /proc -mount none -t sysfs /sys - -# Ensure devtmpfs is mounted, it must be done manually with initramfs -mount none -t devtmpfs /dev - -# Setup PTY infrastructure -mkdir /dev/pts -mount none -t devpts /dev/pts - -ifup lo - -# Allow for distro or local customizations -if [ -f /etc/rc.local ] ; then - source /etc/rc.local -fi - -# Become session leader and try to find a real tty (e.g. ttyS0) -while true; do - setsid cttyhack sh - echo "Console sh exited with $?, respawning..." - sleep 1 -done -- cgit v1.2.3-54-g00ecf