>From 9158e3282db592e78fb32a2c8a0903ef21b97f5c Mon Sep 17 00:00:00 2001
From: Owen Kirby <o...@exegin.com>
Date: Fri, 11 Apr 2014 18:28:56 -0700
Subject: [PATCH 3/3] [at91] Add AT91 board and model name to /tmp/sysinfo.

This patch extracts the board name and model information from the 
/proc/device-tree
node in order to provide something a little more friendly on the LuCI sysinfo 
page
than just "AT91SAM9 (Device Tree)"

Signed-off-by: Owen Kirby <o...@exegin.com>
---
 .../base-files/lib/preinit/03_preinit_do_at91.sh   |    9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 
target/linux/at91/base-files/lib/preinit/03_preinit_do_at91.sh

diff --git a/target/linux/at91/base-files/lib/preinit/03_preinit_do_at91.sh 
b/target/linux/at91/base-files/lib/preinit/03_preinit_do_at91.sh
new file mode 100644
index 0000000..03706ff
--- /dev/null
+++ b/target/linux/at91/base-files/lib/preinit/03_preinit_do_at91.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+do_at91() {
+       [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
+       echo $(strings /proc/device-tree/compatible | head -1) > 
/tmp/sysinfo/board_name
+       echo $(cat /proc/device-tree/model) > /tmp/sysinfo/model
+}
+
+boot_hook_add preinit_main do_at91
-- 
1.7.9.5
_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to