added BMC_THROTTLE gpio and hwmon thermal sensor
diff --git a/bin/Barreleye.py b/bin/Barreleye.py
index f068ea1..c0da678 100755
--- a/bin/Barreleye.py
+++ b/bin/Barreleye.py
@@ -486,6 +486,7 @@
 		0x05 : '/org/openbmc/sensors/host/BootProgress',
 		0x04 : '/org/openbmc/sensors/host/HostStatus',
 		0x08 : '/org/openbmc/sensors/host/OccStatus',
+		0x0A : '/org/openbmc/sensors/host/OccStatus1',
 		0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
 		0x33 : '/org/openbmc/sensors/host/powercap',
 	},
diff --git a/bin/Palmetto.py b/bin/Palmetto.py
index 3c7d9bd..f4b725a 100755
--- a/bin/Palmetto.py
+++ b/bin/Palmetto.py
@@ -276,6 +276,7 @@
 GPIO_CONFIG['POWER_PIN']  =   { 'gpio_pin': 'E1', 'direction': 'out'  }
 GPIO_CONFIG['CRONUS_SEL'] =   { 'gpio_pin': 'A6', 'direction': 'out'  }
 GPIO_CONFIG['PGOOD']      =   { 'gpio_pin': 'C7', 'direction': 'in'  }
+GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
 GPIO_CONFIG['IDENTIFY']   =   { 'gpio_pin': 'R4', 'direction': 'out' }
 GPIO_CONFIG['BMC_READY']   =  { 'gpio_pin': 'R4', 'direction': 'out' }
 GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
@@ -296,4 +297,12 @@
 	offset = int(name[1:])
 	a = ord(c)-65
 	base = a*8+GPIO_BASE
-	return base+offset
\ No newline at end of file
+	return base+offset
+
+HWMON_CONFIG = {
+	'2-004c' :  {
+		'names' : {
+			'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : 1000,'units' : 'C' },
+		}
+	}
+}