<feed xmlns='http://www.w3.org/2005/Atom'>
<title>BMC/tmp/openbmc.git/meta-google/conf, branch fplus</title>
<subtitle>OpenBMC Distribution (mirror)</subtitle>
<id>https://git.radix-linux.su/BMC/tmp/openbmc.git/atom?h=fplus</id>
<link rel='self' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/atom?h=fplus'/>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/'/>
<updated>2025-07-23T16:31:44+00:00</updated>
<entry>
<title>treewide: add whinlatter LAYERSERIES_COMPAT</title>
<updated>2025-07-23T16:31:44+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2025-07-23T15:27:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=a7e82f1843133483b8dbbb8430bf8dcb8c5f0a74'/>
<id>urn:sha1:a7e82f1843133483b8dbbb8430bf8dcb8c5f0a74</id>
<content type='text'>
Change-Id: I1d53510329749ff122c8a65157a72c8ff88bd306
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
</content>
</entry>
<entry>
<title>treewide: add walnascar LAYERSERIES_COMPAT</title>
<updated>2025-05-24T15:35:56+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2025-05-24T15:35:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=50c70479876ec201178500397b99e3df6a5fba87'/>
<id>urn:sha1:50c70479876ec201178500397b99e3df6a5fba87</id>
<content type='text'>
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: I6291eeaf0ca7d4bd674bf0717f1234bfd757f6fe
</content>
</entry>
<entry>
<title>slp: remove from default images</title>
<updated>2025-05-15T09:51:21+00:00</updated>
<author>
<name>Andrew Geissler</name>
<email>geissonator@yahoo.com</email>
</author>
<published>2025-05-14T15:26:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=4960a536bf709107e0be3782f398a0f3effa5734'/>
<id>urn:sha1:4960a536bf709107e0be3782f398a0f3effa5734</id>
<content type='text'>
slpd-lite[1] is a home grown application within OpenBMC that does not
appear to get much use. There are other more full function options like
Avahi or LLDP now. The slpd-lite daemon provides an unauthenticated
network interface which was the result of a fairly severe PSIRT last
year[2].

Given the above, this application should not be included by default when
building OpenBMC.

Tested:
- Confirmed slpd application and service no longer in a Romulus image

[1]: https://github.com/openbmc/slpd-lite
[2]: https://github.com/openbmc/slpd-lite/security/advisories/GHSA-wmgv-jffg-v3xr

Change-Id: Ifd67651cb00a411bf12f0330c4b4fab626953361
Signed-off-by: Andrew Geissler &lt;geissonator@yahoo.com&gt;
</content>
</entry>
<entry>
<title>meta-google: fix VIRTUAL_RUNTIME for bmc and bios update</title>
<updated>2024-12-20T15:13:43+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2024-12-17T23:26:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=ab494b44153d47e565f8ccd995646409e17a1771'/>
<id>urn:sha1:ab494b44153d47e565f8ccd995646409e17a1771</id>
<content type='text'>
GBS fails in Jenkins with the following error:
```
inplace-gbmc-update.bb: QA Issue: RPROVIDES is set to virtual/bmc-update but the substring 'virtual/' holds no meaning in this context. It only works for build time dependencies, not runtime ones. It is suggested to use 'VIRTUAL-RUNTIME_' variables instead. [virtual-slash]
```

Fix all usages of `RPROVIDES = "virtual/.*"` in meta-google and related
systems.

There are some remaining `PREFERRED_PROVIDER.* = "virtual/.*"` config
settings that probably aren't doing what the author(s) expected but
since those aren't being complained about I'll leave them be for now.

Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: Ie74c8190c9380c10ffc362fb4d8d728df3c33fba
</content>
</entry>
<entry>
<title>treewide: remove deprecated VOLATILE_LOG_DIR</title>
<updated>2024-12-20T15:13:43+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2024-12-15T21:44:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=814148c1cccacb8c3f88047977be86582170b7d3'/>
<id>urn:sha1:814148c1cccacb8c3f88047977be86582170b7d3</id>
<content type='text'>
Upstream removed VOLATILE_LOG_DIR and replaced it with
FILESYSTEM_PERMS_TABLES.  Remove the VOLATILE_LOG_DIR and adjust
the FILESYSTEM_PERMS_TABLES as necessary for the same effect as
before.

Since "FILESYSTEM_PERMS_TABLES:remove" would override any append
behavior, we cannot simply use that because it would prevent anyone
using the phosphor-base include from making `/var/log` volatile.
By default we do want to make `/var/log` volatile, but some configs
do not (ex. "gbmc").  To deal with this, add a new variable
PHOSPHOR_VOLATILE_VARLOG, which when set to "1" enables the volatile
`/var/log` setting.

Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: I86f4a87ccbbff88f99662119516acd2bfb58b140
</content>
</entry>
<entry>
<title>treewide: add styhead to LAYERSERIES_COMPAT</title>
<updated>2024-12-20T07:30:56+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2024-12-14T19:50:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=cd7d5b5f5b16c39fc107b48f883e9d8f82e810d2'/>
<id>urn:sha1:cd7d5b5f5b16c39fc107b48f883e9d8f82e810d2</id>
<content type='text'>
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: I8f74fcbb7bf66bb24fde1571ef09fac1095c7e59
</content>
</entry>
<entry>
<title>meta-google: gbmc: Add IGPS_MACHINE for 7xx</title>
<updated>2024-06-10T21:38:14+00:00</updated>
<author>
<name>William A. Kennington III</name>
<email>wak@google.com</email>
</author>
<published>2024-06-06T00:31:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=76a3a0a40f1f8a18c477a54b9d9026797ed51677'/>
<id>urn:sha1:76a3a0a40f1f8a18c477a54b9d9026797ed51677</id>
<content type='text'>
We generally use the eval board config for our 7xx platforms as it has
the sane defaults we usually depend on.

Change-Id: Ie136d7a83f39da66ade8b80814d8dcbbaefbc5ef
Signed-off-by: William A. Kennington III &lt;wak@google.com&gt;
</content>
</entry>
<entry>
<title>meta-google: Set VOLATILE_LOG_DIR to yes</title>
<updated>2024-05-29T22:41:25+00:00</updated>
<author>
<name>Vivekanand Veeracholan</name>
<email>vveerach@google.com</email>
</author>
<published>2024-05-29T22:38:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=b3164a1c8d5ebbd6c2d73a96115e2426d39d3e88'/>
<id>urn:sha1:b3164a1c8d5ebbd6c2d73a96115e2426d39d3e88</id>
<content type='text'>
The previous default behavior of /var/log directory being volatile is
removed in https://gerrit.openbmc.org/c/openbmc/openbmc/+/69959.

Set this to old behavior for Google machines.

Change-Id: I19b321ae5112434db68252d9bc40d646292fd970
Signed-off-by: Vivekanand Veeracholan &lt;vveerach@google.com&gt;
</content>
</entry>
<entry>
<title>meta-google: Add local GBMC_CONFIG</title>
<updated>2024-04-02T21:42:02+00:00</updated>
<author>
<name>Willy Tu</name>
<email>wltu@google.com</email>
</author>
<published>2024-04-02T17:44:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=673f10a76ae2c0106444c29d190e104fb0d059be'/>
<id>urn:sha1:673f10a76ae2c0106444c29d190e104fb0d059be</id>
<content type='text'>
The local override is meant to be used for local testing over and not
to automated builds that may be used for releases. Set the default
config to local now.

Tested:
```
bitbake obmc-phosphor-image -e

// Got the OVERRIDES to have both local the dev
OVERRIDES=":gbmc:local::dev:"
```

Change-Id: I9315fdea220483c6b2e0c873e2b31a1454470d5a
Signed-off-by: Willy Tu &lt;wltu@google.com&gt;
</content>
</entry>
<entry>
<title>treewide: add scarthgap to LAYERSERIES_COMPAT</title>
<updated>2023-11-25T00:20:05+00:00</updated>
<author>
<name>Patrick Williams</name>
<email>patrick@stwcx.xyz</email>
</author>
<published>2023-11-25T00:20:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.radix-linux.su/BMC/tmp/openbmc.git/commit/?id=9d21a9409c159e4fa32c20a774337669da351413'/>
<id>urn:sha1:9d21a9409c159e4fa32c20a774337669da351413</id>
<content type='text'>
Signed-off-by: Patrick Williams &lt;patrick@stwcx.xyz&gt;
Change-Id: I28ee50fa55ae47dd7fd8c99f8f6db8f5f6dfa53d
</content>
</entry>
</feed>
