1
0
This repository has been archived on 2025-01-10. You can view files and clone it. You cannot open issues, pull requests or push a commit.
Files
Anderson Luiz Alves 0464e230c1 stock 103961
2017-07-30 16:48:04 -03:00

12 lines
218 B
Bash
Executable File

#!/bin/sh
if [ ! -n "$1" ] ; then
echo "Usage: $0 <hexaddr> [<length> [<unitsize>]]: Dump a memory region as bytes"
else
if [ ! -n "$2" ] ; then
LEN=1
else
LEN=$2
fi
echo m $1 $LEN b > /proc/bcmlog
fi