2 Star 0 Fork 0

文峰聊书斋/uboot-1.1.6

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mkmovi 539 Bytes
一键复制 编辑 原始数据 按行查看 历史
文峰聊书斋 提交于 2015-06-22 21:49 . hello u-boot-1.1.6
#!/bin/bash
#
# This script will create a u-boot binary for movinand/mmc boot
#
# padding to 256k u-boot
cat u-boot.bin >> u-boot-2x.bin
cat u-boot.bin >> u-boot-2x.bin
split -d -a 1 -b 256k u-boot-2x.bin u-boot-256k.bin
# make BL1 u-boot (8kb)
split -d -a 2 -b 8k u-boot.bin u-boot-8k.bin
# concat the BL1 behind of padded 256k binary
cat u-boot-8k.bin00 >> u-boot-256k.bin0
# rename and chmod
mv u-boot-256k.bin0 u-boot-movi.bin
chmod 777 u-boot-movi.bin
# remove temp files
rm -f u-boot-8k*
rm -f u-boot-256k*
rm -f u-boot-2x.bin
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/wenfengliaoshuzhai/uboot-1.1.6.git
git@gitee.com:wenfengliaoshuzhai/uboot-1.1.6.git
wenfengliaoshuzhai
uboot-1.1.6
uboot-1.1.6
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891