7 lines
138 B
Bash
Executable File
7 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
if [ ! -n "$2" ] ; then
|
|
echo "Usage: $0 <hexaddr> <val>: Write halfword to address"
|
|
else
|
|
echo w $1 $2 1 h > /proc/bcmlog
|
|
fi
|