mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
43 lines
1,014 B
Bash
Executable file
43 lines
1,014 B
Bash
Executable file
#!/usr/bin/bash
|
|
####################################
|
|
#
|
|
# Copyright (C) 2011 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.
|
|
#
|
|
####################################
|
|
#
|
|
# Modified for Arch Linux ARM package uboot-clearfog
|
|
#
|
|
####################################
|
|
|
|
if [ -z $1 ]
|
|
then
|
|
echo "usage: ./sd_fusing.sh <SD Reader's device file>"
|
|
exit 0
|
|
fi
|
|
|
|
if [ -b $1 ]
|
|
then
|
|
echo "$1 reader is identified."
|
|
else
|
|
echo "$1 is NOT identified."
|
|
exit 0
|
|
fi
|
|
|
|
####################################
|
|
# fusing images
|
|
|
|
echo "u-boot fusing"
|
|
dd if=./u-boot-clearfog.mmc of=$1 bs=512 seek=1
|
|
|
|
echo "u-boot environemnt fusing"
|
|
dd if=/dev/zero of=$1 bs=512 seek=1920 count=128
|
|
dd if=./clearfog.env of=$1 bs=512 seek=1920
|
|
|
|
####################################
|
|
#<Message Display>
|
|
echo "U-boot image is fused successfully."
|