summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2018-08-02 17:29:40 +0000
committerSamuel Mendoza-Jonas <sam@mendozajonas.com>2018-08-07 11:30:36 +1000
commitc8afffc32546c3cd72d5d229081211b8e9efe9ee (patch)
tree8b0548c9bfc48ea418c0ad3db5361e60cdf46aa6
parent77f337931a96c33ff0ba66fb7f05891d520e8132 (diff)
downloadtalos-petitboot-c8afffc32546c3cd72d5d229081211b8e9efe9ee.tar.gz
talos-petitboot-c8afffc32546c3cd72d5d229081211b8e9efe9ee.zip
lib/system: Add dmidecode as system app
For use by the arm64 get_sysinfo. Signed-off-by: Geoff Levand <geoff@infradead.org> Signed-off-by: Samuel Mendoza-Jonas <sam@mendozajonas.com>
-rw-r--r--configure.ac1
-rw-r--r--lib/system/system.c1
-rw-r--r--lib/system/system.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 38fe341..eca574a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -394,6 +394,7 @@ DEFINE_HOST_PROG(PB_PLUGIN, pb-plugin, [/usr/sbin/pb-plugin])
DEFINE_HOST_PROG(PB_EXEC, pb-exec, [/usr/sbin/pb-exec])
DEFINE_HOST_PROG(SH, sh, [/bin/sh])
DEFINE_HOST_PROG(SCSI_RESCAN, scsi-rescan, [/usr/sbin/scsi-rescan])
+DEFINE_HOST_PROG(DMIDECODE, dmidecode, [/sbin/dmidecode])
AC_ARG_WITH(
[tftp],
diff --git a/lib/system/system.c b/lib/system/system.c
index df27c87..89790ba 100644
--- a/lib/system/system.c
+++ b/lib/system/system.c
@@ -35,6 +35,7 @@ const struct pb_system_apps pb_system_apps = {
.pb_exec = HOST_PROG_PB_EXEC,
.sh = HOST_PROG_SH,
.scsi_rescan = HOST_PROG_SCSI_RESCAN,
+ .dmidecode = HOST_PROG_DMIDECODE,
};
#ifndef TFTP_TYPE
diff --git a/lib/system/system.h b/lib/system/system.h
index e3e8a30..2389951 100644
--- a/lib/system/system.h
+++ b/lib/system/system.h
@@ -20,6 +20,7 @@ struct pb_system_apps {
const char *pb_exec;
const char *sh;
const char *scsi_rescan;
+ const char *dmidecode;
};
extern const struct pb_system_apps pb_system_apps;
OpenPOWER on IntegriCloud