All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Aníbal Limón" <anibal.limon@linux.intel.com>
To: Otavio Salvador <otavio@ossystems.com.br>
Cc: Patches and discussions about the oe-core layer
	<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCHv3 2/2] initscripts: Add changetodefaultvt for 1, 2, 3, 4 runlevels
Date: Thu, 19 Mar 2015 13:09:42 -0600	[thread overview]
Message-ID: <550B1EF6.8000808@linux.intel.com> (raw)
In-Reply-To: <CAP9ODKqW8cadpDE2FXLNVCh_sAXkAPttGcODR0m_Em4tRntUcA@mail.gmail.com>

Hi,

On 19/03/15 13:04, Otavio Salvador wrote:
> On Thu, Mar 19, 2015 at 7:52 AM, Aníbal Limón
> <anibal.limon@linux.intel.com> wrote:
>> When change between runlevel 5 to another non-graphic runlevel
>> the console stays in the tty where X was launched.
>>
>> This patchs add a default switch to tty1.
>>
>> [YOCTO #5336]
>>
>> Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
>> ---
>>   .../initscripts/initscripts-1.0/changetodefaultvt.sh           | 10 ++++++++++
>>   meta/recipes-core/initscripts/initscripts_1.0.bb               |  8 ++++++++
>>   2 files changed, 18 insertions(+)
>>   create mode 100755 meta/recipes-core/initscripts/initscripts-1.0/changetodefaultvt.sh
>>
>> diff --git a/meta/recipes-core/initscripts/initscripts-1.0/changetodefaultvt.sh b/meta/recipes-core/initscripts/initscripts-1.0/changetodefaultvt.sh
>> new file mode 100755
>> index 0000000..bbef7ed
>> --- /dev/null
>> +++ b/meta/recipes-core/initscripts/initscripts-1.0/changetodefaultvt.sh
>> @@ -0,0 +1,10 @@
>> +#!/bin/sh
>> +### BEGIN INIT INFO
>> +# Provides:             changetodefaultvt
>> +# Required-Start:
>> +# Required-Stop:
>> +# Default-Start:        1 2 3 4
>> +# Default-Stop:
>> +### END INIT INFO
>> +
>> +chvt 1
> You didn't answer the question. How general use distros are handling
> this? It seems hackish!
Yes, its like hackish this is handled by display manager but we don't 
have one in sato.

I think it need to by installed by xserver-nodm-init instead of here. 
I'll send another version.

     alimon
>
>> diff --git a/meta/recipes-core/initscripts/initscripts_1.0.bb b/meta/recipes-core/initscripts/initscripts_1.0.bb
>> index dfb75b2..177ab90 100644
>> --- a/meta/recipes-core/initscripts/initscripts_1.0.bb
>> +++ b/meta/recipes-core/initscripts/initscripts_1.0.bb
>> @@ -33,6 +33,7 @@ SRC_URI = "file://functions \
>>              file://GPLv2.patch \
>>              file://dmesg.sh \
>>              file://logrotate-dmesg.conf \
>> +           file://changetodefaultvt.sh \
>>   "
>>
>>   S = "${WORKDIR}"
>> @@ -100,6 +101,9 @@ do_install () {
>>          install -m 0644    ${WORKDIR}/volatiles         ${D}${sysconfdir}/default/volatiles/00_core
>>          install -m 0755    ${WORKDIR}/dmesg.sh          ${D}${sysconfdir}/init.d
>>          install -m 0644    ${WORKDIR}/logrotate-dmesg.conf ${D}${sysconfdir}/
>> +       if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then
>> +               install -m 0755    ${WORKDIR}/changetodefaultvt.sh      ${D}${sysconfdir}/init.d
>> +       fi
>>
>>          if [ "${TARGET_ARCH}" = "arm" ]; then
>>                  install -m 0755 ${WORKDIR}/alignment.sh ${D}${sysconfdir}/init.d
>> @@ -112,6 +116,10 @@ do_install () {
>>   #
>>   # Create runlevel links
>>   #
>> +       if ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'true', 'false', d)}; then
>> +               update-rc.d -r ${D} changetodefaultvt.sh start 99 1 2 3 4 .
>> +       fi
>> +
>>          update-rc.d -r ${D} rmnologin.sh start 99 2 3 4 5 .
>>          update-rc.d -r ${D} sendsigs start 20 0 6 .
>>          update-rc.d -r ${D} urandom start 30 S 0 6 .
>> --
>> 1.8.4.5
>>
>> --
>> _______________________________________________
>> Openembedded-core mailing list
>> Openembedded-core@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>
>



  reply	other threads:[~2015-03-19 19:09 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-19 10:52 [PATCHv3 0/2] init fixes Aníbal Limón
2015-03-19 10:52 ` [PATCHv3 1/2] sysvinit-inittab: Fix no tty in runlevel 1 Aníbal Limón
2015-03-19 10:52 ` [PATCHv3 2/2] initscripts: Add changetodefaultvt for 1, 2, 3, 4 runlevels Aníbal Limón
2015-03-19 19:04   ` Otavio Salvador
2015-03-19 19:09     ` Aníbal Limón [this message]
2015-03-19 19:20       ` Otavio Salvador

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=550B1EF6.8000808@linux.intel.com \
    --to=anibal.limon@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=otavio@ossystems.com.br \
    /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.