1 Star 1 Fork 5

ronggq/redpill-tool-chain

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
synoboot.sh 541 Bytes
一键复制 编辑 原始数据 按行查看 历史
非仙 提交于 2021-11-27 20:50 . Update synoboot.sh
#!/usr/bin/env bash
T='/dev/synoboot'
S='images/redpill-DS[39]*.img'
cd $(dirname $(readlink -f "$0"))
IMG_FILE=`ls -lt ${S} 2>/dev/null | awk 'NR==1{print $9}'`
if [ ! -b "${T}" ];then
echo -e "The target block device address does not exist:\t${T}"
exit 1
fi
if [ ! -f "${IMG_FILE}" ];then
echo -e "Is not a valid file:\t${IMG_FILE}"
ls -lt ${S}
exit 1
fi
echo -e "Boot image:\t\t${PWD}/${IMG_FILE}"
echo -e "Target block device:\t${T}"
dd if="${IMG_FILE}" of="${T}" bs=4M conv=nocreat oflag=sync status=progress
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ronggq/redpill-tool-chain.git
[email protected]:ronggq/redpill-tool-chain.git
ronggq
redpill-tool-chain
redpill-tool-chain
master

搜索帮助