History log of /openbmc/openbmc/meta-phosphor/classes/obmc-phosphor-utils.bbclass (Results 1 – 12 of 12)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: 2.18.0-dev, 2.17.0-dev, 2.16.0-dev, 2.14.0, 2.14.0-rc1, 2.15.0-dev, 2.13.0, 2.14.0-dev, 2.12.0, 2.12.0-rc1, 2.13.0-dev, 2.11.0, 2.12.0-dev
# 12fc939c 06-Aug-2021 Patrick Williams <patrick@stwcx.xyz>

meta-phosphor: prep for new override syntax

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I588025b614416c43aa2d053765ab53bacf890cb5


Revision tags: 2.10.0-rc1, 2.11.0-dev, 2.9.0, 2.9.0-rc1, 2.10.0-dev
# d0087e08 09-Jul-2020 Brad Bishop <bradleyb@fuzziesquirrel.com>

meta-phosphor: drop dead code

This function isn't used where, so drop.

(From meta-phosphor rev: 8505f065b61291c628b23e593a7bc05c6db64e4e)

Change-Id: If961d3422758af4bcd75069fa695fabe2df01f56
Signe

meta-phosphor: drop dead code

This function isn't used where, so drop.

(From meta-phosphor rev: 8505f065b61291c628b23e593a7bc05c6db64e4e)

Change-Id: If961d3422758af4bcd75069fa695fabe2df01f56
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


# ff92bb65 09-Jul-2020 Brad Bishop <bradleyb@fuzziesquirrel.com>

meta-phosphor: drop feature check wrappers

These pointless wrappers don't do anything other than obfuscate intent
to readers that have experience with bitbake metadata.

(From meta-phosphor rev: 536

meta-phosphor: drop feature check wrappers

These pointless wrappers don't do anything other than obfuscate intent
to readers that have experience with bitbake metadata.

(From meta-phosphor rev: 536cee986517bf14226feb2f412928bc1904f950)

Change-Id: I92b12b6d675acb65d67f442c6331560cb20c88e6
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Signed-off-by: Andrew Geissler <geissonator@yahoo.com>

show more ...


Revision tags: 2.8.0, 2.8.0-rc1, 2.9.0-dev, 2.7.0, 2.7.0-rc1, 2.8.0-dev, 2.7.0-dev, 2.6.0, 2.6.0-rc1, 2.6.0.rc1, v2.4, v2.3, v2.2, v2.1, v2.0, v1.99.10, v1.99.9, v1.99.8, v1.99.7, v1.99.6, v1.99.5, v1.99.4
# 46fd3711 07-Mar-2017 Saqib Khan <khansa@us.ibm.com>

Replace base_contains with bb.utils.contains

base_contains has been deprecated and is replaced by
bb.utils.contains

Change-Id: I8cf9b63b43febed1557e4644c97ccd6614152f98
Signed-off-by: Saqib Khan <k

Replace base_contains with bb.utils.contains

base_contains has been deprecated and is replaced by
bb.utils.contains

Change-Id: I8cf9b63b43febed1557e4644c97ccd6614152f98
Signed-off-by: Saqib Khan <khansa@us.ibm.com>

show more ...


# dc2090d1 07-Mar-2017 Saqib Khan <khansa@us.ibm.com>

Specify len() of object by converting to list

Helps resolve the following error in python3:
TypeError: object of type 'filter' has no len()

Change-Id: Id607186baeacc3802f651d5cb72af82d0c10115b
Sign

Specify len() of object by converting to list

Helps resolve the following error in python3:
TypeError: object of type 'filter' has no len()

Change-Id: Id607186baeacc3802f651d5cb72af82d0c10115b
Signed-off-by: Saqib Khan <khansa@us.ibm.com>

show more ...


Revision tags: v1.99.3
# 1562bbcb 20-Feb-2017 Tom Joseph <tomjoseph@in.ibm.com>

IPMI Whitelisted commands for FRU and OEM repositories

The IPMI whitelisted commands for phosphor-ipmi-fru and openpower-ipmi-oem
is added. Only the IPMI whitelisted listed commands are allowed in
r

IPMI Whitelisted commands for FRU and OEM repositories

The IPMI whitelisted commands for phosphor-ipmi-fru and openpower-ipmi-oem
is added. Only the IPMI whitelisted listed commands are allowed in
restricted mode.

The IPMI whitelisted commands for phosphor-ipmi-fru and openpower-ipmi-oem
are added as native packages and host-ipmid depends on those.

Change-Id: Ic4184773656567eb0dffa30ef29f8bc3ced3aff4
Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>

show more ...


Revision tags: v1.99.2
# 961df760 31-Jan-2017 Brad Bishop <bradleyb@fuzziesquirrel.com>

utils: Shuffle [cf|mf|df]_enabled arguments

Reorder the arguments to these functions so that an optional
falsevalue can be provided.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Change-

utils: Shuffle [cf|mf|df]_enabled arguments

Reorder the arguments to these functions so that an optional
falsevalue can be provided.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
Change-Id: I7eff61064d05d7f0983e404f2c67306ed12a237b

show more ...


Revision tags: v1.99.1, v1.99.0
# 167aaae3 24-Aug-2016 Brad Bishop <bradleyb@fuzziesquirrel.com>

utils: add compose list utilities

Utilities for generating lists from an arbitrary number of other lists.

LIST1 = "0 1"
LIST2 = "x y"
FORMAT = "str{0}-fmt{1}"
LIST3="${@compose_list(d, 'FORMAT', 'L

utils: add compose list utilities

Utilities for generating lists from an arbitrary number of other lists.

LIST1 = "0 1"
LIST2 = "x y"
FORMAT = "str{0}-fmt{1}"
LIST3="${@compose_list(d, 'FORMAT', 'LIST1', 'LIST2')}"

results in after expansion:
LIST3="str0-fmtx str0-fmty str1-fmtx str1-fmty"

LIST1 = "0 1 2"
LIST2 = "a b c"
LIST3 = "x y z""
FORMAT = "python{0}-str{1}-fmt{2}"
LIST3="${@compose_list_zip(d, 'FORMAT', 'LIST1', 'LIST2', 'LIST3')}"

results in after expansion:
LIST3="python0-stra-fmtx python1-strb-fmty python2-strc-fmtz"

Change-Id: Ibcdbd579fa628803a279c65042303dd8336edcaf
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>

show more ...


Revision tags: v1.0.5, v1.0.4, v1.0.3
# 9dc5671c 07-Jul-2016 Brad Bishop <bradleyb@fuzziesquirrel.com>

classes-systemd: General refactoring

Take the more idiomatic approach of iterating on
SYSTEMD_PACKAGES to find service files.

The OBMC_SYSTEMD_SERVICE variable isn't meant to be used directly by
re

classes-systemd: General refactoring

Take the more idiomatic approach of iterating on
SYSTEMD_PACKAGES to find service files.

The OBMC_SYSTEMD_SERVICE variable isn't meant to be used directly by
recipes. Rename it to something that seems less public.

Change-Id: If031937d4716b9c7e6ac1be506457e41109b69c1
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>

show more ...


# 104682fe 11-Jul-2016 Patrick Williams <patrick@stwcx.xyz>

Merge pull request #460 from bradbishop/whitespace

classes-utils: Whitespace fixes


# 6ba6a512 10-Jul-2016 Brad Bishop <bradleyb@fuzziesquirrel.com>

classes-utils: Whitespace fixes

Four spaces for python code.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>


Revision tags: v1.0.2, v1.0.1, v1.0, v0.8.1, v0.8, v0.7, v0.6.1, v0.6, v0.5, v0.4, v0.3, v0.2, v0.1
# 885cdf3f 15-Sep-2015 Patrick Williams <patrick@stwcx.xyz>

Add 'meta-phosphor/' from commit '93fb535853a24d4c3c42ec425ac92c9d3de13294'

git-subtree-dir: meta-phosphor
git-subtree-mainline: 21f9b84b4b729fbd7acbd465e7a3f726e4d20f91
git-subtree-split: 93fb53585

Add 'meta-phosphor/' from commit '93fb535853a24d4c3c42ec425ac92c9d3de13294'

git-subtree-dir: meta-phosphor
git-subtree-mainline: 21f9b84b4b729fbd7acbd465e7a3f726e4d20f91
git-subtree-split: 93fb535853a24d4c3c42ec425ac92c9d3de13294

show more ...