<feed xmlns='http://www.w3.org/2005/Atom'>
<title>BMC/tmp/openbmc.git/meta-evb, branch hardknott</title>
<subtitle>OpenBMC Distribution (mirror)</subtitle>
<id>https://git.radix-linux.su/BMC/tmp/openbmc.git/atom?h=hardknott</id>
<link rel='self' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/atom?h=hardknott'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/'/>
<updated>2021-07-08T22:06:34+00:00</updated>
<entry>
<title>treewide: Remove obsolete image-mklibs class</title>
<updated>2021-07-08T22:06:34+00:00</updated>
<author>
<name>William A. Kennington III</name>
<email>wak@google.com</email>
</author>
<published>2021-05-27T22:36:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=e849b5038b885b344296b7c8ba379e340f309935'/>
<id>urn:sha1:e849b5038b885b344296b7c8ba379e340f309935</id>
<content type='text'>
This is apparently not actually working anymore and is removed in the
next poky update.

Change-Id: Ia1c6a258d124a4a30a14fc42e8e0bba95e64faeb
Signed-off-by: William A. Kennington III &lt;wak@google.com&gt;
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
</content>
</entry>
<entry>
<title>meta-evb-nuvoton: add symlinks for machine-conf for setup</title>
<updated>2021-04-12T18:51:03+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2021-02-20T01:33:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=39c9d3d1bbd05b16016ec6f8044dea8e60d96aff'/>
<id>urn:sha1:39c9d3d1bbd05b16016ec6f8044dea8e60d96aff</id>
<content type='text'>
The 'setup' script looks for machine config files being present
to know that the meta-layer contains a valid machine for OpenBMC.
The nuvoton EVBs are split between meta-nuvoton for the base support
and meta-evb-nuvoton for "EVB on Phosphor" support.

Add symlinks for the machine config files from meta-nuvoton into
meta-evb-nuvoton so that setup recognizes them as valid machines, but
using the phosphor layers.

Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: I871432047979f8a7c3d1b836633a5dc74864b6fa
</content>
</entry>
<entry>
<title>hardknott: yocto release</title>
<updated>2021-04-06T13:22:18+00:00</updated>
<author>
<name>Andrew Geissler</name>
<email>geissonator@yahoo.com</email>
</author>
<published>2021-03-31T20:08:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=5cbb9c9fe72ec00f03a62ac162bb8ca5f5037b03'/>
<id>urn:sha1:5cbb9c9fe72ec00f03a62ac162bb8ca5f5037b03</id>
<content type='text'>
Latest upstream yocto has moved on to the 3.3 hardknott release

Signed-off-by: Andrew Geissler &lt;geissonator@yahoo.com&gt;
Change-Id: Ieae36798d66d21c2c642931f06407d3bb2acf163
</content>
</entry>
<entry>
<title>openbmc: add meta-security layer</title>
<updated>2021-03-22T13:59:05+00:00</updated>
<author>
<name>Anton D. Kachalov</name>
<email>gmouse@google.com</email>
</author>
<published>2021-03-17T11:35:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=cde0f094f52420ffa1cb0a235c22dba43297c255'/>
<id>urn:sha1:cde0f094f52420ffa1cb0a235c22dba43297c255</id>
<content type='text'>
This layer provides libseccomp.

Signed-off-by: Anton D. Kachalov &lt;gmouse@google.com&gt;
Change-Id: I84513d56f2ed75fab49043196b98ef8b858e394f
</content>
</entry>
<entry>
<title>Remove phsophor-gpio-keys as a standalone feature</title>
<updated>2021-03-01T04:53:39+00:00</updated>
<author>
<name>Joel Stanley</name>
<email>joel@jms.id.au</email>
</author>
<published>2021-02-25T03:33:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=b1ff1bd2067beed2425de13d4d75beb0fbe2dc17'/>
<id>urn:sha1:b1ff1bd2067beed2425de13d4d75beb0fbe2dc17</id>
<content type='text'>
The feature was implemented as an append to the kernel (BSP) layers in
meta-phsophor. This created a three way dance between machine layers,
BSP and meta-phosphor, when it should have been the kernel layer
providing this feature and machines could then opt in.

Fixing this means we could remove the KERNEL_DANGLING_FEATURES_WARN_ONLY
workaround.

As the feature is simply turning on a pair of kernel options without any
other impact, we can implement it by adding the options to our
defconfigs. In fact, aspeed and hpe kernel configurations enable the two
kernel options:

$ git grep CONFIG_KEYBOARD_GPIO=y
meta-aspeed/recipes-kernel/linux/linux-aspeed/aspeed-g4/defconfig:CONFIG_KEYBOARD_GPIO=y
meta-aspeed/recipes-kernel/linux/linux-aspeed/aspeed-g5/defconfig:CONFIG_KEYBOARD_GPIO=y
meta-aspeed/recipes-kernel/linux/linux-aspeed/aspeed-g6/defconfig:CONFIG_KEYBOARD_GPIO=y
meta-hpe/meta-gxp/recipes-kernel/linux/linux-obmc/defconfig:CONFIG_KEYBOARD_GPIO=y

$ git grep CONFIG_INPUT_EVDEV
meta-aspeed/recipes-kernel/linux/linux-aspeed/aspeed-g4/defconfig:CONFIG_INPUT_EVDEV=y
meta-aspeed/recipes-kernel/linux/linux-aspeed/aspeed-g5/defconfig:CONFIG_INPUT_EVDEV=y
meta-aspeed/recipes-kernel/linux/linux-aspeed/aspeed-g6/defconfig:CONFIG_INPUT_EVDEV=y
meta-hpe/meta-gxp/recipes-kernel/linux/linux-obmc/defconfig:CONFIG_INPUT_EVDEV=y

Other machines that wish to enable this feature should ensure it is
added to their BSP's defconfig, or add it to their machine specific
defconfig.

Change-Id: I0726836319022f96c1d13d4a0cbd73708047302c
Signed-off-by: Joel Stanley &lt;joel@jms.id.au&gt;
</content>
</entry>
<entry>
<title>meta-evb-aspeed: add symlinks for machine-conf for setup</title>
<updated>2021-02-20T01:49:38+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2021-02-20T01:33:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=2f792172a5d898b2e31bfcba2d45ab899c0ff630'/>
<id>urn:sha1:2f792172a5d898b2e31bfcba2d45ab899c0ff630</id>
<content type='text'>
The 'setup' script looks for machine config files being present
to know that the meta-layer contains a valid machine for OpenBMC.
The aspeed EVBs are split between meta-aspeed for the base support
and meta-evb-aspeed for "EVB on Phosphor" support.

Add symlinks for the machine config files from meta-aspeed into
meta-evb-aspeed so that setup recognizes them as valid machines, but
using the phosphor layers.

Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: I673756a3d837f61d7338b8fbb356c5234770ffca
</content>
</entry>
<entry>
<title>meta-evb-ast2600: Add obmc-phosphor-bsp-common.inc</title>
<updated>2021-01-13T17:14:54+00:00</updated>
<author>
<name>Troy Lee</name>
<email>troy_lee@aspeedtech.com</email>
</author>
<published>2021-01-13T02:39:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=f51034c65dd6311dc107389bdde82dd86ce01a9c'/>
<id>urn:sha1:f51034c65dd6311dc107389bdde82dd86ce01a9c</id>
<content type='text'>
Add obmc-phosphor-bsp-common.inc for building OpenBMC image.

Tested build with:
	TEMPLATECONF=meta-evb/meta-evb-aspeed/meta-evb-ast2600/conf . openbmc-env
	bitbake obmc-phosphor-image

(From meta-evb rev: ddba410ebffe7bace588ff6d216c43608f4c5310)

Signed-off-by: Troy Lee &lt;troy_lee@aspeedtech.com&gt;
Change-Id: Ia005eb875f11fec8ffb3aadd5fff4b93a3028f3a
Signed-off-by: Andrew Geissler &lt;geissonator@yahoo.com&gt;
</content>
</entry>
<entry>
<title>meta-evb-ast2600: Add an new convenience layer for OpenBMC AST2600 EVB</title>
<updated>2021-01-12T22:28:53+00:00</updated>
<author>
<name>Troy Lee</name>
<email>troy_lee@aspeedtech.com</email>
</author>
<published>2020-12-02T02:34:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=26bcba21d649b70dfef0e8fbd39926b239ed7516'/>
<id>urn:sha1:26bcba21d649b70dfef0e8fbd39926b239ed7516</id>
<content type='text'>
This commit has been verified with AST2600A1 EVB with the image created
by the following command:

TEMPLATECONF=meta-evb/meta-evb-aspeed/meta-evb-ast2600/conf . openbmc-env
bitbake obmc-phosphor-image

(From meta-evb rev: 9ec0661731103f703660aa65b5806a126a4f69fb)

Signed-off-by: Troy Lee &lt;troy_lee@aspeedtech.com&gt;
Change-Id: Ie928880ed77ea77cecb33a900092f6ffc5454fb8
Signed-off-by: Andrew Geissler &lt;geissonator@yahoo.com&gt;
</content>
</entry>
<entry>
<title>meta-evb: update Yocto compat for gatesgarth</title>
<updated>2020-11-21T19:00:18+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2020-11-20T14:33:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=c7270e6e632deeaed4aacc7451031fa7b1f9d0b4'/>
<id>urn:sha1:c7270e6e632deeaed4aacc7451031fa7b1f9d0b4</id>
<content type='text'>
The next release of Yocto is soon and most of the upstream
layers have switched support strings for it.  Support layer
compat for gatesgarth (current) and dunfell (previous).

(From meta-evb rev: 4d356d1b1afe5b7050220a649b894b1309973495)

Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: Ia4a5889b5cb26171b4578f7a29254c9ad0c527a0
Signed-off-by: Andrew Geissler &lt;geissonator@yahoo.com&gt;
</content>
</entry>
<entry>
<title>meta-evb-ast2500: Add obmc-bsp-common.inc</title>
<updated>2020-07-20T22:09:44+00:00</updated>
<author>
<name>Lei YU</name>
<email>yulei.sh@bytedance.com</email>
</author>
<published>2020-07-20T08:30:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=82583ec0ddef11cf93718968f12b18b7727b3893'/>
<id>urn:sha1:82583ec0ddef11cf93718968f12b18b7727b3893</id>
<content type='text'>
Add obmc-bsp-common.inc so that evb-ast2500 build produces the OpenBMC
image.

Tested: Verify that the evb-ast2500 builds OK with below commands:

            TEMPLATECONF=meta-evb/meta-evb-aspeed/meta-evb-ast2500/conf . openbmc-env
            bitbake obmc-phosphor-image

(From meta-evb rev: 55bf3f1528d5c90c08c7cfa42e3f1783b4d29d35)

Signed-off-by: Lei YU &lt;yulei.sh@bytedance.com&gt;
Change-Id: I00b22e5fc9a99296028621abb29f40a44e99fc34
Signed-off-by: Andrew Geissler &lt;geissonator@yahoo.com&gt;
</content>
</entry>
</feed>
