summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Add initial hard PWM based beep utilityRaptor Engineering Development Team2019-04-191-1/+2
|
* Add very early version of software beep utilityRaptor Engineering Development Team2019-04-191-1/+2
|
* Add new IPL status observer and Talos LED driverRaptor Engineering Development Team2019-04-191-0/+2
|
* buttons: Remove legacy button applicationsBrad Bishop2019-03-201-3/+1
| | | | | | | | | | 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>
* Remove pciedetectAdriana Kobylak2018-10-041-1/+0
| | | | | | | | | 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>
* pysensormgr: Remove sensor managerAdriana Kobylak2018-08-221-1/+0
| | | | | | | | | | | | | | 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>
* hwmon: RemoveBrad Bishop2017-07-061-1/+0
| | | | | | | | Remove the legacy pyhwmon application. Its functionality has been replaced by phosphor-hwmon. Change-Id: Icbba91cd7d0841b3fc74eec280455edaa79af1f6 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Remove hostwatchdogVishwanatha Subbanna2017-06-131-1/+0
| | | | | | | | 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>
* Remove hostcheckstopVishwanatha Subbanna2017-06-081-1/+0
| | | | | | | | 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>
* Remove unneeded 'startup-hacks' fileJosh King2016-10-201-1/+0
| | | | | | | | | | | | | | 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>
* Add fanctl to skeletonYi Li2016-10-071-2/+2
| | | | | | | | | | | | | | | | | 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>
* Conditionally use system provided libopenbmc_intfBrad Bishop2016-06-271-6/+6
| | | | | | | | | | | | | | | | | | 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>
* Remove dead codeBrad Bishop2016-06-211-5/+0
| | | | | | Removing a bunch of commented out code and unused applications. Signed-of-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Add gpio checkstop handling to MakefileAdriana Kobylak2016-06-161-0/+1
| | | | | | Add gpio checkstop target to Makefil to build it. Signed-off-by: Adriana Kobylak <anoo@us.ibm.com>
* Install python workbook to well-known locationBrad Bishop2016-06-101-1/+0
| | | | | | | This removes the need to pass the system configuration to all the scripts. Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
* Reorganize directory structureBrad Bishop2016-06-101-77/+51
| | | | | | | | | | | | | | | 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>
* Remove custom org.openbmc.Object.ObjectMapperBrad Bishop2016-04-211-14/+14
| | | | | | | | | | | | | | 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.
* LED Makefile and polarity fixesAdriana Kobylak2016-02-091-1/+3
| | | | | | | | 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.
* Implement new LED driverAdriana Kobylak2016-02-091-5/+2
| | | | | | | | 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.
* add back in control_bmcNorman James2016-01-311-1/+4
|
* remove new led controllerNorman James2016-01-301-7/+1
|
* Refactored LED control dbus methodsvishwa2016-01-291-1/+4
|
* Add reset buttonKen2015-12-181-1/+5
|
* remove fanNorman James2015-11-171-4/+1
|
* add hwmons for barreleyeNorman James2015-11-061-3/+3
|
* add hwmon dbus objectNorman James2015-11-051-1/+4
|
* mergeNorman James2015-10-311-6/+6
|\
| * Move .so library to lib directoryAdriana Kobylak2015-10-291-5/+6
| | | | | | | | | | | | Move .so library out of bin into lib to make recipe simpler Move the make all target to the top so that it's the default for make Make clean to delete all created targets
* | add pflashNorman James2015-10-311-17/+17
|/
* remove temp sensorNorman James2015-10-281-4/+1
|
* change /dev path to btNorman James2015-10-261-1/+1
|
* add -u to python to not buffer stdoutNorman James2015-10-221-2/+2
|
* Update makefile to be friendly with OE buildBrad Bishop2015-10-191-41/+38
|
* lots of changesNorman James2015-10-181-6/+6
|
* updated flashingNorman James2015-10-111-3/+6
|
* added flash_bios to make allNorman James2015-10-081-1/+1
|
* made bus config global and moved to system busNorman James2015-10-071-1/+4
|
* seperated flash downloadNorman James2015-10-071-4/+10
|
* added gpio to power buttonNorman James2015-10-061-1/+1
|
* lots of changesNorman James2015-10-041-0/+3
|
* lots of changesNorman James2015-09-211-10/+10
|
* added error loggingNorman James2015-09-161-2/+2
|
* added some error handlingNorman James2015-09-151-2/+2
|
* added make allNorman James2015-09-151-1/+7
|
* lots of changesNorman James2015-09-141-26/+29
|
* lots of changesNorman James2015-09-081-0/+5
|
* lots of changesNorman James2015-09-021-2/+4
|
* lots of changesNorman James2015-08-301-6/+14
|
* lots of changesNorman James2015-08-271-11/+14
|
* changed bin output to .exeNorman James2015-08-251-7/+7
|
OpenPOWER on IntegriCloud