Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
85396212
Commit
85396212
authored
12 years ago
by
Benoit Rat
Browse files
Options
Downloads
Patches
Plain Diff
firmwares: correct bad flashing of barebox & add options of usb-loader
parent
a69b92b7
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
build/flash-wrs
+19
-18
19 additions, 18 deletions
build/flash-wrs
with
19 additions
and
18 deletions
build/flash-wrs
+
19
−
18
View file @
85396212
...
...
@@ -26,43 +26,44 @@ if [ $err -eq 1 ]; then
fi
# parse command line
DEV
=
"/dev/ttyACM0"
MAC
=
""
DEV
=
""
FLAGS
=
""
while
[
$#
-ge
1
]
;
do
case
$1
in
/
*
)
DEV
=
"
$1
"
;
shift
;;
--help
|
-h
)
echo
"Usage :
\t
$0
[options] MAC
\n
Options:
\t
same as mch_flasher
\n\n
"
;
echo
">
\$
usb-loader/mch_flasher -h"
;
usb-loader/mch_flasher
-h
;
exit
0
;;
/
*
)
DEV
=
"-s
$1
"
;
shift
;;
*
:
*
)
MAC
=
"
$1
"
;
shift
;;
-
*
)
FLAGS
=
"
${
FLAGS
}
$1
"
;
shift
;;
*
)
echo
"
$0
: Invalid argument
\"
$1
\"
"
>
&2
;
exit
1
;;
esac
done
# check mac address
# build flasher itself
if
CC
=
cc make
-s
-C
usb-loader
;
then
true
;
else
echo
"
$0
: Error compiling usb-loader"
>
&2
;
exit
1
;
fi
# check & change mac address
if
[
"x
$MAC
"
!=
"x"
]
;
then
X
=
"[0-9a-fA-F][0-9a-fA-F]"
if
echo
$MAC
|
grep
"^
${
X
}
:
${
X
}
:
${
X
}
:
${
X
}
:
${
X
}
:
${
X
}
\$
"
>
/dev/null
;
then
true
sed
-i
"s/02:0B:AD:C0:FF:EE/
$MAC
/"
$T
echo
"MAC is now:
$MAC
"
else
echo
"
$0
: Invalid MAC address
\"
$MAC
\"
"
>
&2
;
exit
1
;
fi
fi
# build flasher itself
if
CC
=
cc make
-s
-C
usb-loader
;
then
true
;
else
echo
"
$0
: Error compiling usb-loader"
>
&2
;
exit
1
;
fi
# cat binaries to temp file. Increase size of at91boot (0x8400)
T
=
$(
mktemp
/tmp/wrs-flash.XXXXXX
)
cat
binaries/at91bootstrap.bin /dev/zero |
dd
bs
=
1
count
=
33792
>
$T
\
2> /dev/null
cat
binaries/barebox.bin
>>
$T
# change the mac address if so requested
if
[
"
$MAC
"
!=
"x
$MAC
"
]
;
then
sed
-i
"s/02:0B:AD:C0:FF:EE/
$MAC
/"
$T
fi
cp
./binaries/at91bootstrap.bin
$T
dd
if
=
./binaries/barebox.bin
of
=
$T
conv
=
notrunc
bs
=
1
seek
=
33792 2> /dev/null
# flash it (msc...)
(
cd
usb-loader
&&
./mch_flasher
$
T
$DEV
)
(
cd
usb-loader
&&
./mch_flasher
$
FLAGS
$DEV
$T
)
#rm -f $T
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment