ASR_BASE

Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/external/subpack/utils/lm-sensors/files/lm-sensors.init b/external/subpack/utils/lm-sensors/files/lm-sensors.init
new file mode 100644
index 0000000..5ac7a72
--- /dev/null
+++ b/external/subpack/utils/lm-sensors/files/lm-sensors.init
@@ -0,0 +1,14 @@
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2017 Philip Prindeville, Redfish Solutions LLC
+
+START=28
+STOP=
+
+PROG=/usr/sbin/sensors
+
+start() {
+	[ -f /etc/sensors.conf -o -f /etc/sensors3.conf ] || return
+
+	$PROG -s
+}
+