All of lore.kernel.org
 help / color / mirror / Atom feed
From: Darren Hart <dvhart@linux.intel.com>
To: Khem Raj <raj.khem@gmail.com>
Cc: Yocto Project <yocto@yoctoproject.org>,
	Paul Eggleton <paul.eggleton@linux.intel.com>,
	Phil Blundell <philb@gnu.org>
Subject: Re: [PATCH 2/2] tiny-init: Basic init mechanism for poky-tiny
Date: Mon, 18 Jun 2012 14:11:58 -0700	[thread overview]
Message-ID: <4FDF999E.2030200@linux.intel.com> (raw)
In-Reply-To: <CAMKF1somYK7Qb4kNfXMH=5wh4kaPdt2vi8s-OywAMwHT2T48WQ@mail.gmail.com>



On 06/18/2012 02:06 PM, Khem Raj wrote:
>> diff --git a/meta-yocto/recipes-core/tiny-init/files/init b/meta-yocto/recipes-core/tiny-init/files/init
>> new file mode 100644
>> index 0000000..bf2817d
>> --- /dev/null
>> +++ b/meta-yocto/recipes-core/tiny-init/files/init
>> @@ -0,0 +1,21 @@
>> +#!/bin/sh
>> +
>> +# Mount the Linux kernel virtual filesystems
>> +mount none -t proc /proc
>> +mount none -t sysfs /sys
>> +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
>> diff --git a/meta-yocto/recipes-core/tiny-init/files/rc.local.sample b/meta-yocto/recipes-core/tiny-init/files/rc.local.sample
>> new file mode 100644
>> index 0000000..d9e198a
>> --- /dev/null
>> +++ b/meta-yocto/recipes-core/tiny-init/files/rc.local.sample
>> @@ -0,0 +1,23 @@
>> +#!/bin/sh
>> +
>> +# Start services and customize the boot process here.
>> +echo "Running /etc/rc.local..."
>> +
>> +# Use init scripts included with packages such as dropbear
>> +#/etc/init.d/dropbear start
>> +
>> +# Spawn a getty manually
>> +#setsid /sbin/getty 115200 ttyS2
>> +
>> +# Print a banner
>> +#echo "You are running a poky-tiny image brought to you by the Yocto Project."
>> +
>> +# Setup a debugging environment
>> +#mkdir /debugfs
>> +#mount none -t debugfs /debugfs
>> +
>> +# Load modules (note: linux-yocto-tiny does not have module support by default)
>> +#modprobe yourdriver
>> +
>> +# DO NOT run any long running tasks or loops as these will delay
>> +# the /init script and the console shell.
>> diff --git a/meta-yocto/recipes-core/tiny-init/tiny-init.bb b/meta-yocto/recipes-core/tiny-init/tiny-init.bb
>> new file mode 100644
>> index 0000000..1cf46ed
>> --- /dev/null
>> +++ b/meta-yocto/recipes-core/tiny-init/tiny-init.bb
>> @@ -0,0 +1,26 @@
>> +SUMMARY = "Poky-tiny init"
>> +DESCRIPTION = "Basic init system for poky-tiny"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
>> +
>> +PR = "r0"
>> +
>> +SRC_URI = "file://init \
>> +          file://rc.local.sample \
>> +         "
>> +
>> +do_configure() {
>> +       :
>> +}
>> +
>> +do_compile() {
>> +       :
>> +}
>> +
>> +do_install() {
>> +       install -d ${D}${sysconfdir}
>> +       install -m 0755 ${WORKDIR}/init ${D}
>> +       install -m 0755 ${WORKDIR}/rc.local.sample ${D}${sysconfdir}
>> +}
>> +
>> +FILES_${PN} = "/init ${sysconfdir}/rc.local.sample"
>> --
>> 1.7.5.4
>>
> 
> 
> should this recipe rdepend on busybox ? since it uses the binaries from it.?

I suppose so, I wasn't even sure how to build an image WITHOUT busybox -
but I'm sure it's doable, and the RDEPENDS should reflect the
dependencies accurately.

I've updated the patch in the branch:

http://git.yoctoproject.org/cgit.cgi/poky-contrib/commit/?h=dvhart/tiny&id=ed5ded75a66c6ae0defaef6301e333615f71d616

Thanks for catching that.

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel




  reply	other threads:[~2012-06-18 21:13 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-18 20:18 [PATCH 0/2] [meta-yocto] poky-tiny: busybox bbappend and tiny-init Darren Hart
2012-06-18 20:18 ` [PATCH 1/2] busybox: Introduce poky-tiny defconfig override Darren Hart
2012-06-18 20:18 ` [PATCH 2/2] tiny-init: Basic init mechanism for poky-tiny Darren Hart
2012-06-18 21:06   ` Khem Raj
2012-06-18 21:11     ` Darren Hart [this message]
2012-06-18 21:18       ` Martin Jansa
2012-06-18 21:23         ` Darren Hart
2012-06-18 21:32         ` Khem Raj

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FDF999E.2030200@linux.intel.com \
    --to=dvhart@linux.intel.com \
    --cc=paul.eggleton@linux.intel.com \
    --cc=philb@gnu.org \
    --cc=raj.khem@gmail.com \
    --cc=yocto@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.