<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-virtualization.git/recipes-core/sysvinit, branch gatesgarth</title>
<subtitle>Mirror of git.yoctoproject.org/meta-virtualization</subtitle>
<id>https://git.enea.com/cgit/linux/meta-virtualization.git/atom?h=gatesgarth</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-virtualization.git/atom?h=gatesgarth'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/'/>
<updated>2020-03-30T14:37:05+00:00</updated>
<entry>
<title>sysvinit-inittab_xen: Using getty wrapper to minimize console messages</title>
<updated>2020-03-30T14:37:05+00:00</updated>
<author>
<name>Jaewon Lee</name>
<email>jaewon.lee@xilinx.com</email>
</author>
<published>2020-03-24T00:01:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=f1e768dfdfb148b9b4c6aaaf065ccea79dd5484d'/>
<id>urn:sha1:f1e768dfdfb148b9b4c6aaaf065ccea79dd5484d</id>
<content type='text'>
Previously the following message was printed on the console every 5
minutes:
INIT: Id "X0" respawning too fast: disabled for 5 minutes

Installing and using a getty-wrapper that will check for the hypervisor
(hvc0) device and if not present, will call sleep

Signed-off-by: Jaewon Lee &lt;jaewon.lee@xilinx.com&gt;
Signed-off-by: Mark Hatle &lt;mark.hatle@xilinx.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@gmail.com&gt;
</content>
</entry>
<entry>
<title>Revert "sysvinit-inittab_xen.inc: fix hypervisor console"</title>
<updated>2019-04-12T14:53:56+00:00</updated>
<author>
<name>Bruce Ashfield</name>
<email>bruce.ashfield@gmail.com</email>
</author>
<published>2019-04-12T14:53:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=abcdb5841dfffc1ff4410f6c149dc304d4ac5e42'/>
<id>urn:sha1:abcdb5841dfffc1ff4410f6c149dc304d4ac5e42</id>
<content type='text'>
Temporarily reverting this commit, since it has broken some Xen boot
usecases. We'll revisit this in the future.

This reverts commit 50cdecca7b2a0e1bb5eacbec132f26b802f950fc.
</content>
</entry>
<entry>
<title>sysvinit-inittab_xen.inc: fix hypervisor console</title>
<updated>2019-03-25T03:14:04+00:00</updated>
<author>
<name>Manjukumar Matha</name>
<email>manjukumar.harthikote-matha@xilinx.com</email>
</author>
<published>2019-03-22T19:40:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=50cdecca7b2a0e1bb5eacbec132f26b802f950fc'/>
<id>urn:sha1:50cdecca7b2a0e1bb5eacbec132f26b802f950fc</id>
<content type='text'>
This commit switches over to using existing SERIAL_CONSOLES mechanism
for hvc0 inittab entry generation.  This then results in
/bin/start_getty wrapper being used, which avoids the getty failure seen
when running a xen capable rootfs natively on linux.

Signed-off-by: Manjukumar Matha &lt;manjukumar.harthikote-matha@xilinx.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@gmail.com&gt;
</content>
</entry>
<entry>
<title>sysvinit: fix DISTRO decode</title>
<updated>2018-04-17T17:57:28+00:00</updated>
<author>
<name>Armin Kuster</name>
<email>akuster808@gmail.com</email>
</author>
<published>2018-04-16T14:34:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=7d2ee2dfa266f339d57823a72560ca2fcf01bd49'/>
<id>urn:sha1:7d2ee2dfa266f339d57823a72560ca2fcf01bd49</id>
<content type='text'>
the yocto-check-layer failed with:

      Dependency on variable DISTRO_FEATURES_LIBC was added
      Variable do_install value changed:
      @@ -32,3 +32,7 @@
               done
               echo "" &gt;&gt; ${D}${sysconfdir}/inittab
           fi
      +	if echo "${DISTRO_FEATURES}" | grep -q 'xen'; then
      +		echo "" &gt;&gt; ${D}${sysconfdir}/inittab
      +		echo "X0:12345:respawn:/sbin/getty 115200 hvc0" &gt;&gt; ${D}${sysconfdir}/inittab
      +	fi

used idea from meta-selinux

Signed-off-by: Armin Kuster &lt;akuster@mvista.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>bbappend: switch to use a wildcard beyond major version</title>
<updated>2015-09-08T13:59:36+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2015-09-03T20:00:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=25228032779e492ce08eb3697cb2a68934fef383'/>
<id>urn:sha1:25228032779e492ce08eb3697cb2a68934fef383</id>
<content type='text'>
Using a wildcard will simplify things when using meta-virtualization
against different yocto or oe branches and prevent having to make
future updates to keep in step with package uprevs.

The changes found within these bbappend tend to be generic and
non-version specific, thus safe for 'porting' via wildcard.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>fix inittab install when Xen not in DISTRO_FEATURES</title>
<updated>2013-11-13T17:52:46+00:00</updated>
<author>
<name>Riku Voipio</name>
<email>riku.voipio@linaro.org</email>
</author>
<published>2013-11-13T09:25:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=8e7d3cc8ae829ee275d0a7209d1cedbeb7d1d5d0'/>
<id>urn:sha1:8e7d3cc8ae829ee275d0a7209d1cedbeb7d1d5d0</id>
<content type='text'>
With the latest patch, OE builds may file like:

https://ci.linaro.org/jenkins/job/openembedded-armv7ab-rootfs/gcc_version=4.8,label=oe_persistent_cloud,rootfs=minimal/127/consoleText

By having the "failing" grep within the if block, set -e
in shell code will not bite configurations where meta-virtualization
is included but xen is not in DISTRO_FEATURES.

Signed-off-by: Riku Voipio &lt;riku.voipio@linaro.org&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>xen: Add getty to inittab for login on Xen serial console.</title>
<updated>2013-11-07T20:31:05+00:00</updated>
<author>
<name>Philip Tricca</name>
<email>flihp@twobit.us</email>
</author>
<published>2013-11-06T02:54:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-virtualization.git/commit/?id=38a09562ecf83e31da78d3294d02d0e2592be769'/>
<id>urn:sha1:38a09562ecf83e31da78d3294d02d0e2592be769</id>
<content type='text'>
It's not pretty but the mechanisms in sysvinit-inittab assume the
console device name is tty*. The Xen console device doesn't meet
this criteria.

Signed-off-by: Philip Tricca &lt;flihp@twobit.us&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
</feed>
