#
eaedbe94 |
| 20-Mar-2019 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
buttons: Remove legacy button applications
The button applications have moved to their own project here: https://github.com/openbmc/phosphor-buttons
Remove the legacy rstbutton and pwrbutton appica
buttons: Remove legacy button applications
The button applications have moved to their own project here: https://github.com/openbmc/phosphor-buttons
Remove the legacy rstbutton and pwrbutton appications.
Change-Id: I16d0e364bd748551cf4d33244e07de79e069dedc Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
show more ...
|
#
b8da93ed |
| 19-Sep-2018 |
Adriana Kobylak <anoo@us.ibm.com> |
Remove pciedetect
The pciedetect app was originally created for the Barreleye system which is not maintained anymore. This app is not included on any other system, so remove it.
Change-Id: Id3803f8
Remove pciedetect
The pciedetect app was originally created for the Barreleye system which is not maintained anymore. This app is not included on any other system, so remove it.
Change-Id: Id3803f8478e8bc60e4889f4e454ee25d78c5fbc4 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
52efa659 |
| 21-Aug-2018 |
Adriana Kobylak <anoo@us.ibm.com> |
pysensormgr: Remove sensor manager
This sensor manager was in charge of managing the sensors under the /org/openbmc/sensors path, but this path is now deprecated and the sensors have moved to other
pysensormgr: Remove sensor manager
This sensor manager was in charge of managing the sensors under the /org/openbmc/sensors path, but this path is now deprecated and the sensors have moved to other paths specified by the ipmi sensor config.yaml file in the openbmc/openbmc repo. This sensor manager can now be removed.
Tested: Powered on a Witherspoon to the Host OS without ipmi giving get/set sensor errors.
Change-Id: Ic6a8b95d9dd025ba160669acac134c0b49420a89 Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
show more ...
|
#
9f369bf0 |
| 30-Jun-2017 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
hwmon: Remove
Remove the legacy pyhwmon application. Its functionality has been replaced by phosphor-hwmon.
Change-Id: Icbba91cd7d0841b3fc74eec280455edaa79af1f6 Signed-off-by: Brad Bishop <bradley
hwmon: Remove
Remove the legacy pyhwmon application. Its functionality has been replaced by phosphor-hwmon.
Change-Id: Icbba91cd7d0841b3fc74eec280455edaa79af1f6 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
show more ...
|
#
1a219003 |
| 12-Jun-2017 |
Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com> |
Remove hostwatchdog
Host Watchdog has been refactored now and hence this needs to be deleted.
Change-Id: Ib0fc60e9fdf1daf8156b33127b4a574022d52067 Signed-off-by: Vishwanatha Subbanna <vishwa@linux.
Remove hostwatchdog
Host Watchdog has been refactored now and hence this needs to be deleted.
Change-Id: Ib0fc60e9fdf1daf8156b33127b4a574022d52067 Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
show more ...
|
#
3fad9f7a |
| 08-Jun-2017 |
Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com> |
Remove hostcheckstop
Host Checkstop monitor has been refactored now and hence this needs to be deleted.
Change-Id: I6fffd499420589f893ac44d366ecbdd60cc742ad Signed-off-by: Vishwanatha Subbanna <vis
Remove hostcheckstop
Host Checkstop monitor has been refactored now and hence this needs to be deleted.
Change-Id: I6fffd499420589f893ac44d366ecbdd60cc742ad Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
show more ...
|
#
e6592b51 |
| 30-Sep-2016 |
Josh King <jdking@us.ibm.com> |
Remove unneeded 'startup-hacks' file
Removed the hacks file because there is no reason for the UART at this point. Also no longer need for the serial-stop. I did confirm that the VUART is still fu
Remove unneeded 'startup-hacks' file
Removed the hacks file because there is no reason for the UART at this point. Also no longer need for the serial-stop. I did confirm that the VUART is still functioning with these changes. I also modified the top level Makefile to no longer include the hacks directory.
Resolved openbmc/openbmc#586
Change-Id: I7c116b6736d35b1119564816df6ee6aa14616467 Signed-off-by: Josh King <jdking@us.ibm.com>
show more ...
|
#
2f3213f9 |
| 02-Aug-2016 |
Yi Li <adamliyi@msn.com> |
Add fanctl to skeleton
fanctl replaces pyfanctl. It provides fan control service with dbus object "/org/openbmc/control/fans".
Currently there are two methods: setMax() to set all fans' speed to ma
Add fanctl to skeleton
fanctl replaces pyfanctl. It provides fan control service with dbus object "/org/openbmc/control/fans".
Currently there are two methods: setMax() to set all fans' speed to maximum, and updatePresent() to update the "Present" status of inventory objects: "/org/openbmc/inventory/system/chassis/fan*".
In future, more methods will be added, like setting fan speed based on temperature sensor reading.
Fixes openbmc/openbmc#93
Change-Id: Ic65089f5d0538cd5e17cfcd9f27e652ae6080ec5 Signed-off-by: Yi Li <adamliyi@msn.com>
show more ...
|
#
f834525a |
| 28-Jun-2016 |
Patrick Williams <patrick@stwcx.xyz> |
Merge pull request #115 from bradbishop/refactoring
More skeleton refactoring
|
#
6f4ba053 |
| 27-Jun-2016 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
Conditionally use system provided libopenbmc_intf
This patch structures the make rules such that building from the top will build the in-tree libopenbmc_intf and link to that. For example: $make
Conditionally use system provided libopenbmc_intf
This patch structures the make rules such that building from the top will build the in-tree libopenbmc_intf and link to that. For example: $make $make bmcctl would both result in ../libopenbmc_intf being built and the applications will link to that.
Alternatively when building applications directly like: $make -C bmcctl the default compiler/linker search paths will be used.
The latter facilitates package managers and the former retains a level of flexibility for developers working from the repository.
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
show more ...
|
#
b0d0a745 |
| 21-Jun-2016 |
Patrick Williams <patrick@stwcx.xyz> |
Merge pull request #107 from bradbishop/dead
Remove dead code
|
#
af3c9136 |
| 20-Jun-2016 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
Remove dead code
Removing a bunch of commented out code and unused applications.
Signed-of-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
|
#
cbe32133 |
| 17-Jun-2016 |
Patrick Williams <patrick@stwcx.xyz> |
Merge pull request #96 from anoo1/xstop
Add support for checkstop gpio
|
#
066d56f8 |
| 16-Jun-2016 |
Adriana Kobylak <anoo@us.ibm.com> |
Add gpio checkstop handling to Makefile
Add gpio checkstop target to Makefil to build it.
Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
|
#
5213a991 |
| 13-Jun-2016 |
Patrick Williams <patrick@stwcx.xyz> |
Merge pull request #101 from bradbishop/refactoring
skeleton refactoring
|
#
0b380f7b |
| 09-Jun-2016 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
Install python workbook to well-known location
This removes the need to pass the system configuration to all the scripts.
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
|
#
40a360c2 |
| 28-May-2016 |
Brad Bishop <bradleyb@fuzziesquirrel.com> |
Reorganize directory structure
Moving to directory per-application layout. This facilitates building single applications which is useful in the Yocto build environment since different applications
Reorganize directory structure
Moving to directory per-application layout. This facilitates building single applications which is useful in the Yocto build environment since different applications satisfy different OpenBMC build requirements.
A number of issues are also addressed: - All applications were pulling in libsystemd and the gdbus libs irrespective of whether or not they were needed. - gpio.o duplicated in every application - moved to libopenbmc_intf - Added install target
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
show more ...
|
#
d3e6edc7 |
| 29-Apr-2016 |
Patrick Williams <patrick@stwcx.xyz> |
Merge pull request #61 from bradbishop/om
Remove custom org.openbmc.Object.ObjectMapper usage
|
#
58e694d8 |
| 13-Apr-2016 |
Brad Bishop <bradleyb@us.ibm.com> |
Remove custom org.openbmc.Object.ObjectMapper
Use the standard freedesktop ObjectManager interface.
Moved gdbus OM export calls to the correct place so these signals are emitted as expected by syst
Remove custom org.openbmc.Object.ObjectMapper
Use the standard freedesktop ObjectManager interface.
Moved gdbus OM export calls to the correct place so these signals are emitted as expected by system_manager.py. Python apps that use pyobmc are already emitting these correctly.
Change system_manager.py to watch for the freedesktop signal rather than the custom one.
Added an sd_bus OM to led_controller.
show more ...
|
#
deec0d81 |
| 10-Feb-2016 |
nkskjames <nkskjames@gmail.com> |
Merge pull request #46 from anoo1/newleds
Implement new LED driver
|
#
cc2be267 |
| 09-Feb-2016 |
Adriana Kobylak <anoo@us.ibm.com> |
LED Makefile and polarity fixes
Copy the changes from pending pull request: https://github.com/openbmc/skeleton/pull/39
These changes were done in the led_controller_new file, but need to be ported
LED Makefile and polarity fixes
Copy the changes from pending pull request: https://github.com/openbmc/skeleton/pull/39
These changes were done in the led_controller_new file, but need to be ported to file led_controller since it has been renamed.
show more ...
|
#
9c75104b |
| 09-Feb-2016 |
Adriana Kobylak <anoo@us.ibm.com> |
Implement new LED driver
Verification for the new LED driver is completed so time to replace the previous gpio implementation with the new one. This entails replacing the led_controller file with th
Implement new LED driver
Verification for the new LED driver is completed so time to replace the previous gpio implementation with the new one. This entails replacing the led_controller file with the led_controller_new file, updating the dbus interface name so that it is the same as the previous one, and updating the code with the new led names.
show more ...
|
#
a4293490 |
| 01-Feb-2016 |
nkskjames <nkskjames@gmail.com> |
Merge pull request #35 from nkskjames/add_control_bmc
add back in control_bmc
|
#
78b7cfbf |
| 31-Jan-2016 |
Norman James <njames@us.ibm.com> |
add back in control_bmc
|
#
8dd49932 |
| 30-Jan-2016 |
Norman James <njames@us.ibm.com> |
remove new led controller
|