用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
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.
|
#!/bin/sh
|
|
|
|
export LC_ALL=C.UTF-8
|
|
export LANG=C.UTF-8
|
|
|
|
usage() {
|
|
echo "usage: ./update_firmware.sh"
|
|
}
|
|
|
|
CUR_DIR=$(pwd)
|
|
TOOLS=$CUR_DIR/../tools
|
|
|
|
$TOOLS/upgrade_tool db $CUR_DIR/image/rk2108_db_loader.bin
|
|
$TOOLS/upgrade_tool wl 0 $CUR_DIR/image/Firmware.img
|
|
$TOOLS/upgrade_tool rd
|
|
|