一 s5p4418 支持SD/TF卡离线烧录

为了支持该功能,需要两个工具sd_fdisk和u-boot-head-tool。

sd_fdisk功能是对TF卡分区,u-boot-head-tool则是修改编译生成的u-boot以适合s5p4418硬件启动的要求。

两个工具的下载地址是http://download.csdn.net/detail/u010406724/8362055,


另外还需要一个脚本,来使用这两个工具sd_fusing.sh,具体的代码如下:

#
# Copyright (C) 2010 Samsung Electronics Co., Ltd.
#              http://www.samsung.com/
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
####################################
reader_type1="/dev/sdj"
#如果是使用的新卡(或者没有烧写过s5p4418程序的卡),那么需要把disk_tf_enable设置为1(默认值),执行完成后再设置为0,除非更换卡才再次设置为1,否则请保持为0,避免顺坏tf卡中原有的数据
disk_tf_enable=0 


if [ -z $1 ]
then
    echo "usage: ./sd_fusing.sh <SD Reader's device file>"
    exit 0
fi

if [ $disk_tf_enable = 1 ]
then
	if [ $1 = $reader_type1 ]
	then
		partition1="$1"'1'
		partition2="$1"'2'
		partition3="$1"'3'
		partition4="$1"'4'
	fi

	if [ -b $1 ]
	then
		echo "$1 reader is identified."
	else
		echo "$1 is NOT identified."
		exit 0
	fi

	####################################
	# make partition
	echo "make sd card partition"
	echo "./sd_fdisk $1" 
	./sd_fdisk $1 
	dd iflag=dsync oflag=dsync if=sd_mbr.dat of=$1 
	rm sd_mbr.dat

	####################################
	# format
	umount $partition1 2> /dev/null
	umount $partition2 2> /dev/null
	umount $partition3 2> /dev/null
	umount $partition4 2> /dev/null

	echo "mkfs.vfat -F 32 $partition1"
	sudo mkfs.vfat -F 32 $partition1

	#echo "mkfs.ext2 $partition2"
	#mkfs.ext2 $partition2  

	#echo "mkfs.ext2 $partition3"
	#mkfs.ext2 $partition3  

	#echo "mkfs.ext2 $partition4"
	#mkfs.ext2 $partition4  
	#mount $partition1
fi
####################################
#<BL1 fusing>
bl1_position=1
uboot_position=64

echo "2ndboot fusing"
dd iflag=dsync oflag=dsync if=2ndboot.bin of=$1 seek=$bl1_position


./u-boot-head-tool #对u-boot进行加头处理

####################################
#<u-boot fusing>
echo "u-boot fusing"
dd iflag=dsync oflag=dsync if=u-boot-tmp.bin of=$1 seek=$uboot_position

rm u-boot-tmp.bin
####################################
#<Message Display>
echo "U-boot image is fused successfully."


另外当然还需要u-boot.bin和2ndboot两个文件了,这两个文件也都会在官方的系统文件中提供了。

在执行脚本之前需要确保文件如下图所示:


另外需要注意脚本中的一个变量

disk_tf_enable=0

只有在使用新卡或者没有烧写过4418程序的卡时设置为1,其他都设置为0,免得因为格式化顺坏tf卡。




  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 5
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值