Remove APPS and CALLBACKS from board config files

No longer required with the switch to systemd for state management.

Change-Id: I34047f948a92cb996a6926765b9a4d8df9f8d1f2
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/configs/Barreleye.py b/configs/Barreleye.py
index de12638..cf3e27c 100644
--- a/configs/Barreleye.py
+++ b/configs/Barreleye.py
@@ -39,218 +39,6 @@
 	},
 }
 
-## method will be called when state is entered
-ENTER_STATE_CALLBACK = {
-	'INVENTORY_UPLOADED' : {
-		'boot' : {
-			'bus_name'    : 'org.openbmc.control.Host',
-			'obj_name'    : '/org/openbmc/control/host0',
-			'interface_name' : 'org.openbmc.control.Host',
-		},
-		'setMax' : {
-			'bus_name'    : 'org.openbmc.control.Fans',
-			'obj_name'    : '/org/openbmc/control/fans',
-			'interface_name' : 'org.openbmc.control.Fans',
-		},
-		'setOn' : {
-			'bus_name'   : 'org.openbmc.control.led',
-			'obj_name'   : '/org/openbmc/control/led/identify',
-			'interface_name' : 'org.openbmc.Led',
-		}
-	},
-	'HOST_POWERED_OFF' : {
-		'setOff' : {
-			'bus_name'   : 'org.openbmc.control.led',
-			'obj_name'   : '/org/openbmc/control/led/identify',
-			'interface_name' : 'org.openbmc.Led',
-		}
-
-	},
-	'BMC_READY' : {
-		'setOn' : {
-			'bus_name'   : 'org.openbmc.control.led',
-			'obj_name'   : '/org/openbmc/control/led/beep',
-			'interface_name' : 'org.openbmc.Led',
-		},
-		'init' : {
-			'bus_name'   : 'org.openbmc.control.Flash',
-			'obj_name'   : '/org/openbmc/control/flash/bios',
-			'interface_name' : 'org.openbmc.Flash',
-		}
-	}
-}
-
-APPS = {
-	'startup_hacks' : {
-		'system_state'    : 'BASE_APPS',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'startup_hacks.sh',
-	},
-	'inventory' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'inventory_items.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'inventory_upload' : {
-		'system_state'    : 'HOST_POWERED_ON',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'goto_system_state.py',
-		'args'            : [ 'INVENTORY_UPLOADED', 'inventory_upload.py' ]
-	},
-	'pcie_present' : {
-		'system_state'    : 'INVENTORY_UPLOADED',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'pcie_slot_present.exe',
-	},
-	'fan_control' : {
-		'system_state'    : 'BMC_STARTING2',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'fan_control.py',
-	},
-	'hwmon' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'hwmon.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'sensor_manager' : {
-		'system_state'    : 'BASE_APPS',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'sensor_manager2.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'host_watchdog' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'host_watchdog.exe',
-	},
-	'power_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name' : 'power_control.exe',
-		'args' : [ '3000', '10' ]
-	},
-	'power_button' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'button_power.exe',
-	},
-        'reset_button' : {
-                'system_state'    : 'BMC_STARTING',
-                'start_process'   : True,
-                'monitor_process' : True,
-                'process_name'    : 'button_reset.exe',
-        },
-	'host_checkstop' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'host_checkstop.exe',
-	},
-	'led_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'led_controller.exe',
-	},
-	'flash_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'flash_bios.exe',
-	},
-	'bmc_flash_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'bmc_update.py',
-	},
-	'download_manager' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'download_manager.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'host_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'control_host.exe',
-	},
-	'chassis_control' : {
-		'system_state'    : 'BMC_STARTING2',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'chassis_control.py',
-	},
-	'board_vpd' : {
-		'system_state'    : 'BMC_STARTING2',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'phosphor-read-eeprom',
-		'args'            : ['--eeprom','/sys/bus/i2c/devices/0-0050/eeprom','--fruid','64'],
-	},
-	'motherboard_vpd' : {
-		'system_state'    : 'BMC_STARTING2',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'phosphor-read-eeprom',
-		'args'            : ['--eeprom','/sys/bus/i2c/devices/4-0054/eeprom','--fruid','3'],
-	},
-	'exp_vpd' : {
-		'system_state'    : 'BMC_STARTING2',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'phosphor-read-eeprom',
-		'args'            : ['--eeprom','/sys/bus/i2c/devices/6-0051/eeprom','--fruid','65'],
-	},
-	'hdd_vpd' : {
-		'system_state'    : 'BMC_STARTING2',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'phosphor-read-eeprom',
-		'args'            : ['--eeprom','/sys/bus/i2c/devices/6-0055/eeprom','--fruid','66'],
-	},
-	'sync_mac' : {
-		'system_state'    : 'BMC_READY',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'sync_inventory_items.py',
-		'args'            : ['-t','DAUGHTER_CARD','-n','io_board','-p','"Custom Field 2"','-s','mac'],
-	},
-	'sync_uuid' : {
-		'system_state'    : 'BMC_READY',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'sync_inventory_items.py',
-		'args'            : ['-t','MAIN_PLANAR','-n','motherboard','-p','"Custom Field 1"','-s','uuid'],
-	},
-	'restore' : {
-		'system_state'    : 'BMC_READY',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'discover_system_state.py',
-	},
-	'bmc_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'control_bmc.exe',
-	},
-}
-
 CACHED_INTERFACES = {
 		"org.openbmc.InventoryItem" : True,
 		"org.openbmc.control.Chassis" : True,
diff --git a/configs/Firestone.py b/configs/Firestone.py
index ed64018..d648397 100644
--- a/configs/Firestone.py
+++ b/configs/Firestone.py
@@ -32,146 +32,6 @@
     },
 }
 
-## method will be called when state is entered
-ENTER_STATE_CALLBACK = {
-    'HOST_POWERED_ON' : {
-        'boot' : {
-            'bus_name'    : 'org.openbmc.control.Host',
-            'obj_name'    : '/org/openbmc/control/host0',
-            'interface_name' : 'org.openbmc.control.Host',
-        },
-    },
-    'HOST_POWERED_OFF' : {
-        'setOff' : {
-            'bus_name'   : 'org.openbmc.control.led',
-            'obj_name'   : '/org/openbmc/control/led/identify',
-            'interface_name' : 'org.openbmc.Led',
-        }
-    },
-    'BMC_READY' : {
-        'setOn' : {
-            'bus_name'   : 'org.openbmc.control.led',
-            'obj_name'   : '/org/openbmc/control/led/beep',
-            'interface_name' : 'org.openbmc.Led',
-        },
-        'init' : {
-            'bus_name'   : 'org.openbmc.control.Flash',
-            'obj_name'   : '/org/openbmc/control/flash/bios',
-            'interface_name' : 'org.openbmc.Flash',
-        }
-    }
-}
-
-APPS = {
-    'startup_hacks' : {
-        'system_state'    : 'BASE_APPS',
-        'start_process'   : True,
-        'monitor_process' : False,
-        'process_name'    : 'startup_hacks.sh',
-    },
-    'inventory' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'inventory_items.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'hwmon' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'hwmon.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'sensor_manager' : {
-        'system_state'    : 'BASE_APPS',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'sensor_manager2.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'host_watchdog' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'host_watchdog.exe',
-    },
-    'power_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name' : 'power_control.exe',
-        'args' : [ '3000', '10' ]
-    },
-    'power_button' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'button_power.exe',
-    },
-    'reset_button' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'button_reset.exe',
-    },
-    'host_checkstop' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'host_checkstop.exe',
-    },
-    'led_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'led_controller.exe',
-    },
-    'flash_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'flash_bios.exe',
-    },
-    'bmc_flash_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'bmc_update.py',
-    },
-    'download_manager' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'download_manager.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'host_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'control_host.exe',
-    },
-    'chassis_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'chassis_control.py',
-    },
-    'restore' : {
-        'system_state'    : 'BMC_READY',
-        'start_process'   : True,
-        'monitor_process' : False,
-        'process_name'    : 'discover_system_state.py',
-    },
-    'bmc_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'control_bmc.exe',
-    },
-}
-
 CACHED_INTERFACES = {
         "org.openbmc.InventoryItem" : True,
         "org.openbmc.control.Chassis" : True,
diff --git a/configs/Garrison.py b/configs/Garrison.py
index 442dfda..85ef159 100644
--- a/configs/Garrison.py
+++ b/configs/Garrison.py
@@ -32,146 +32,6 @@
     },
 }
 
-## method will be called when state is entered
-ENTER_STATE_CALLBACK = {
-    'HOST_POWERED_ON' : {
-        'boot' : {
-            'bus_name'    : 'org.openbmc.control.Host',
-            'obj_name'    : '/org/openbmc/control/host0',
-            'interface_name' : 'org.openbmc.control.Host',
-        },
-    },
-    'HOST_POWERED_OFF' : {
-        'setOff' : {
-            'bus_name'   : 'org.openbmc.control.led',
-            'obj_name'   : '/org/openbmc/control/led/identify',
-            'interface_name' : 'org.openbmc.Led',
-        }
-    },
-    'BMC_READY' : {
-        'setOn' : {
-            'bus_name'   : 'org.openbmc.control.led',
-            'obj_name'   : '/org/openbmc/control/led/beep',
-            'interface_name' : 'org.openbmc.Led',
-        },
-        'init' : {
-            'bus_name'   : 'org.openbmc.control.Flash',
-            'obj_name'   : '/org/openbmc/control/flash/bios',
-            'interface_name' : 'org.openbmc.Flash',
-        }
-    }
-}
-
-APPS = {
-    'startup_hacks' : {
-        'system_state'    : 'BASE_APPS',
-        'start_process'   : True,
-        'monitor_process' : False,
-        'process_name'    : 'startup_hacks.sh',
-    },
-    'inventory' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'inventory_items.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'hwmon' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'hwmon.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'sensor_manager' : {
-        'system_state'    : 'BASE_APPS',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'sensor_manager2.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'host_watchdog' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'host_watchdog.exe',
-    },
-    'power_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name' : 'power_control.exe',
-        'args' : [ '3000', '10' ]
-    },
-    'power_button' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'button_power.exe',
-    },
-    'reset_button' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'button_reset.exe',
-    },
-    'host_checkstop' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'host_checkstop.exe',
-    },
-    'led_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'led_controller.exe',
-    },
-    'flash_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'flash_bios.exe',
-    },
-    'bmc_flash_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'bmc_update.py',
-    },
-    'download_manager' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'download_manager.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'host_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'control_host.exe',
-    },
-    'chassis_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'chassis_control.py',
-    },
-    'restore' : {
-        'system_state'    : 'BMC_READY',
-        'start_process'   : True,
-        'monitor_process' : False,
-        'process_name'    : 'discover_system_state.py',
-    },
-    'bmc_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'control_bmc.exe',
-    },
-}
-
 CACHED_INTERFACES = {
         "org.openbmc.InventoryItem" : True,
         "org.openbmc.control.Chassis" : True,
diff --git a/configs/Palmetto.py b/configs/Palmetto.py
index 4942669..0c8ca46 100644
--- a/configs/Palmetto.py
+++ b/configs/Palmetto.py
@@ -33,139 +33,6 @@
 	}
 }
 
-## method will be called when state is entered
-ENTER_STATE_CALLBACK = {
-	'HOST_POWERED_ON' : {
-		'boot' : { 
-			'bus_name'    : 'org.openbmc.control.Host',
-			'obj_name'    : '/org/openbmc/control/host0',
-			'interface_name' : 'org.openbmc.control.Host',
-		}
-	},
-	'BMC_READY' : {
-		'setOn' : {
-			'bus_name'   : 'org.openbmc.control.led',
-			'obj_name'   : '/org/openbmc/control/led/identify',
-			'interface_name' : 'org.openbmc.Led',
-		},
-		'init' : {
-			'bus_name'   : 'org.openbmc.control.Flash',
-			'obj_name'   : '/org/openbmc/control/flash/bios',
-			'interface_name' : 'org.openbmc.Flash',
-		},
-	}
-}
-
-APPS = {
-	'startup_hacks' : {
-		'system_state'    : 'BASE_APPS',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'startup_hacks.sh',
-	},
-	'inventory' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'inventory_items.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'pcie_present' : {
-		'system_state'    : 'HOST_POWERED_ON',
-		'start_process'   : False,
-		'monitor_process' : False,
-		'process_name'    : 'pcie_slot_present.exe',
-	},
-	'virtual_sensors' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'hwmon.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'sensor_manager' : {
-		'system_state'    : 'BASE_APPS',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'sensor_manager2.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'host_watchdog' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'host_watchdog.exe',
-	},
-	'power_control' : {	
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name' : 'power_control.exe',
-		'args' : [ '3000', '10' ]
-	},
-	'power_button' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : False,
-		'monitor_process' : False,
-		'process_name'    : 'button_power.exe',
-	},
-	'host_checkstop' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : False,
-		'monitor_process' : False,
-		'process_name'    : 'host_checkstop.exe',
-	},
-	'led_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'led_controller.exe',
-	},
-	'flash_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'flash_bios.exe',
-	},
-	'bmc_flash_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'bmc_update.py',
-	},
-	'download_manager' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'download_manager.py',
-		'args'            : [ SYSTEM_NAME ]
-	},
-	'host_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'control_host.exe',
-	},
-	'chassis_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'chassis_control.py',
-	},
-	'restore' : {
-		'system_state'    : 'BMC_READY',
-		'start_process'   : True,
-		'monitor_process' : False,
-		'process_name'    : 'discover_system_state.py',
-	},
-	'bmc_control' : {
-		'system_state'    : 'BMC_STARTING',
-		'start_process'   : True,
-		'monitor_process' : True,
-		'process_name'    : 'control_bmc.exe',
-	}
-}
-
 CACHED_INTERFACES = {
 		"org.openbmc.InventoryItem" : True,
 		"org.openbmc.control.Chassis" : True,
diff --git a/configs/Witherspoon.py b/configs/Witherspoon.py
index a10accd..468d157 100644
--- a/configs/Witherspoon.py
+++ b/configs/Witherspoon.py
@@ -32,146 +32,6 @@
     },
 }
 
-## method will be called when state is entered
-ENTER_STATE_CALLBACK = {
-    'HOST_POWERED_ON' : {
-        'boot' : {
-            'bus_name'    : 'org.openbmc.control.Host',
-            'obj_name'    : '/org/openbmc/control/host0',
-            'interface_name' : 'org.openbmc.control.Host',
-        },
-    },
-    'HOST_POWERED_OFF' : {
-        'setOff' : {
-            'bus_name'   : 'org.openbmc.control.led',
-            'obj_name'   : '/org/openbmc/control/led/identify',
-            'interface_name' : 'org.openbmc.Led',
-        }
-    },
-    'BMC_READY' : {
-        'setOn' : {
-            'bus_name'   : 'org.openbmc.control.led',
-            'obj_name'   : '/org/openbmc/control/led/beep',
-            'interface_name' : 'org.openbmc.Led',
-        },
-        'init' : {
-            'bus_name'   : 'org.openbmc.control.Flash',
-            'obj_name'   : '/org/openbmc/control/flash/bios',
-            'interface_name' : 'org.openbmc.Flash',
-        }
-    }
-}
-
-APPS = {
-    'startup_hacks' : {
-        'system_state'    : 'BASE_APPS',
-        'start_process'   : True,
-        'monitor_process' : False,
-        'process_name'    : 'startup_hacks.sh',
-    },
-    'inventory' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'inventory_items.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'hwmon' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'hwmon.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'sensor_manager' : {
-        'system_state'    : 'BASE_APPS',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'sensor_manager2.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'host_watchdog' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'host_watchdog.exe',
-    },
-    'power_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name' : 'power_control.exe',
-        'args' : [ '3000', '10' ]
-    },
-    'power_button' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'button_power.exe',
-    },
-    'reset_button' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'button_reset.exe',
-    },
-    'host_checkstop' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'host_checkstop.exe',
-    },
-    'led_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'led_controller.exe',
-    },
-    'flash_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'flash_bios.exe',
-    },
-    'bmc_flash_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'bmc_update.py',
-    },
-    'download_manager' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'download_manager.py',
-        'args'            : [ SYSTEM_NAME ]
-    },
-    'host_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'control_host.exe',
-    },
-    'chassis_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'chassis_control.py',
-    },
-    'restore' : {
-        'system_state'    : 'BMC_READY',
-        'start_process'   : True,
-        'monitor_process' : False,
-        'process_name'    : 'discover_system_state.py',
-    },
-    'bmc_control' : {
-        'system_state'    : 'BMC_STARTING',
-        'start_process'   : True,
-        'monitor_process' : True,
-        'process_name'    : 'control_bmc.exe',
-    },
-}
-
 CACHED_INTERFACES = {
         "org.openbmc.InventoryItem" : True,
         "org.openbmc.control.Chassis" : True,