aboutsummaryrefslogtreecommitdiffstats
path: root/mpm/tools/db-dump.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpm/tools/db-dump.c')
-rw-r--r--mpm/tools/db-dump.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/mpm/tools/db-dump.c b/mpm/tools/db-dump.c
new file mode 100644
index 000000000..f4190a2aa
--- /dev/null
+++ b/mpm/tools/db-dump.c
@@ -0,0 +1,31 @@
+//
+// Copyright 2017 Ettus Research, a National Instruments Company
+//
+// SPDX-License-Identifier: GPL-3.0
+//
+
+#include "eeprom.h"
+#include <stdlib.h>
+
+int main(int argc, char *argv[])
+{
+ struct usrp_sulfur_db_eeprom *ep;
+ int which_slot = 0;
+
+ if (argc != 2)
+ return EXIT_FAILURE;
+
+ which_slot = atoi(argv[1]);
+
+ if (!which_slot)
+ ep = usrp_sulfur_db_eeprom_from_file(NVMEM_PATH_SLOT_A);
+ else
+ ep = usrp_sulfur_db_eeprom_from_file(NVMEM_PATH_SLOT_B);
+
+ if (!ep)
+ return EXIT_FAILURE;
+ usrp_sulfur_db_eeprom_print(ep);
+ free(ep);
+
+ return 0;
+}