15 lines
262 B
Plaintext
15 lines
262 B
Plaintext
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2012 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
. /lib/ar71xx.sh
|
||
|
|
||
|
board=$(ar71xx_board_name)
|
||
|
|
||
|
if [ "${board}" == "tew-673gru" ]; then
|
||
|
cp -f /etc/lcd4linux_tew673gru.conf /etc/lcd4linux.conf
|
||
|
chmod 600 /etc/lcd4linux.conf
|
||
|
chown root:root /etc/lcd4linux.conf
|
||
|
fi
|