From fe38dcf8f376a4e01d527697033fbb3f5782a699 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Tue, 29 Apr 2014 21:02:40 +0000 Subject: at91: Add AT91 board and model name to /tmp/sysinfo From 9158e3282db592e78fb32a2c8a0903ef21b97f5c Mon Sep 17 00:00:00 2001 From: Owen Kirby 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 SVN-Revision: 40598 --- target/linux/at91/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 (limited to 'target/linux/at91') 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 0000000000..03706ffe1a --- /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 -- cgit v1.2.3