diff options
| author | Andrew Geissler <andrewg@us.ibm.com> | 2017-01-16 13:12:21 -0600 |
|---|---|---|
| committer | Andrew Geissler <andrewg@us.ibm.com> | 2017-01-16 14:59:49 -0600 |
| commit | 794baed325213d39d75e5f8c3374177891ef70ec (patch) | |
| tree | f74a843d019cff57ad5f3fab929c4ea11150d7ba | |
| parent | 2ec3a7e97e19b617f3ffa8d2f9466c019368e077 (diff) | |
| download | phosphor-state-manager-794baed325213d39d75e5f8c3374177891ef70ec.tar.gz phosphor-state-manager-794baed325213d39d75e5f8c3374177891ef70ec.zip | |
Replace op with phosphor in state application names
The correct naming convention for these applications
is to start with phosphor-, not op-.
Change-Id: I24373f5d4498f7fb90fb6b8a3b5b29dccca93f4d
Signed-off-by: Andrew Geissler <andrewg@us.ibm.com>
| -rw-r--r-- | .gitignore | 4 | ||||
| -rw-r--r-- | Makefile.am | 12 |
2 files changed, 8 insertions, 8 deletions
@@ -41,8 +41,8 @@ Makefile.in /config.h.in~ /config.log /config.status -/op-host-state-manager -/op-chassis-state-manager +/phosphor-host-state-manager +/phosphor-chassis-state-manager Makefile .deps *-libtool diff --git a/Makefile.am b/Makefile.am index 479df05..7e4cc20 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,18 +1,18 @@ AM_DEFAULT_SOURCE_EXT = .cpp sbin_PROGRAMS = \ - op-host-state-manager \ - op-chassis-state-manager + phosphor-host-state-manager \ + phosphor-chassis-state-manager -op_host_state_manager_SOURCES = \ +phosphor_host_state_manager_SOURCES = \ host_state_manager.cpp \ xyz.openbmc_project.State.Host.cpp \ host_state_manager_main.cpp -op_chassis_state_manager_SOURCES = \ +phosphor_chassis_state_manager_SOURCES = \ chassis_state_manager.cpp \ xyz.openbmc_project.State.Chassis.cpp \ chassis_state_manager_main.cpp -op_host_state_manager_LDFLAGS = $(SYSTEMD_LIBS) -op_chassis_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
\ No newline at end of file +phosphor_host_state_manager_LDFLAGS = $(SYSTEMD_LIBS) +phosphor_chassis_state_manager_LDFLAGS = $(SYSTEMD_LIBS)
\ No newline at end of file |

