You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
472 B
31 lines
472 B
do_sysinfo_octeon() {
|
|
local machine
|
|
local name
|
|
|
|
machine=$(grep "^system type" /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g")
|
|
|
|
case "$machine" in
|
|
"UBNT_E100"*)
|
|
name="erlite"
|
|
;;
|
|
|
|
"UBNT_E200"*)
|
|
name="er"
|
|
;;
|
|
|
|
"UBNT_E220"*)
|
|
name="erpro"
|
|
;;
|
|
|
|
*)
|
|
name="generic"
|
|
;;
|
|
esac
|
|
|
|
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
|
|
|
|
echo "$name" > /tmp/sysinfo/board_name
|
|
echo "$machine" > /tmp/sysinfo/model
|
|
}
|
|
|
|
boot_hook_add preinit_main do_sysinfo_octeon
|
|
|