All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mike Looijmans <mike.looijmans@topic.nl>
To: <yocto@yoctoproject.org>
Subject: Re: Adding to inittab based on image content
Date: Sat, 7 Jan 2017 10:23:50 +0100	[thread overview]
Message-ID: <5870B3A6.1060205@topic.nl> (raw)
In-Reply-To: <1783218.8DiePDOEFx@rjs-zotac.streifs.net>

On 06-01-17 18:17, Rudolf J Streif wrote:
> Hi Colin,
>
> The correct way of doing this is a package postinstallation script that is run
> by the package manager after the package containing your application is
> installed on the target system.
>
> You add to your recipe:
>
> pkg_postinst_${PN}() {
> #!/bin/sh
> echo "whateveryouneed" >> ${D}/etc/inittab
> }

Problems are that if you upgrade the application on target, it'll be 
included twice, and that when you remove the application, the inittab 
entry remains. If inittab itsef gets upgraded, the entry will be gone.


>
> The build system will include this as the post install script into the package
> in the correct form for the package manager you are using e.g. RPM, DEB, IPK.
>
> This will work when the build system installs your package into the system
> root or when executed on the target.
>
> You can also distinguish the two cases:
>
> pkg_postinst_${PN}() {
> #!/bin/sh
> if [ x"$D" = "x" ] ; then
>     # shell commands for target execution
> else
>     # shell commands for build system execution
> fi
> }
>
> In the case of target execution $D is not set.
>
> Best regards,
> Rudi
>
>
> On Friday, January 6, 2017 1:39:40 PM PST colin.helliwell@ln-systems.com
> wrote:
>> Hi,
>>
>> I have a custom recipe for an application, and the app also needs an entry
>> adding to inittab. I'd like to trigger this, obviously, only when the app is
>> included in the image.
>>
>> I came across some hints at how to do this -
>> http://git.yoctoproject.org/cgit/cgit.cgi/meta-virtualization/tree/recipes-c
>> ore/sysvinit/sysvinit-inittab_2.88dsf.bbappend?h=dizzy - but the app isn't
>> in DISTRO_FEATURES. (Right or wrong.., I include it in the image with a
>> "CORE_IMAGE_EXTRA_INSTALL +=" in my image recipe).
>>
>> Any suggestions on how to make this inittab addition conditional?
>>
>> Thanks
>
>
>
>


-- 
Mike Looijmans


Kind regards,

Mike Looijmans
System Expert

TOPIC Products
Materiaalweg 4, NL-5681 RJ Best
Postbus 440, NL-5680 AK Best
Telefoon: +31 (0) 499 33 69 79
E-mail: mike.looijmans@topicproducts.com
Website: www.topicproducts.com

Please consider the environment before printing this e-mail







  reply	other threads:[~2017-01-07  9:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-06 13:39 Adding to inittab based on image content colin.helliwell
2017-01-06 17:17 ` Rudolf J Streif
2017-01-07  9:23   ` Mike Looijmans [this message]
2017-01-07 16:50     ` Rudolf J Streif
2017-01-11  9:16   ` colin.helliwell

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=5870B3A6.1060205@topic.nl \
    --to=mike.looijmans@topic.nl \
    --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.