summaryrefslogtreecommitdiff
path: root/tools/mkmi4.sh
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-08-30 10:35:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-08-30 10:35:14 +0000
commitea4ed4961a51a323107cbf66c1d4ecf90818666b (patch)
treefb24aa037316a07dfbd33b27698acbf78e9e3ba0 /tools/mkmi4.sh
parent84a5287caf607c6932e97e2953a94452338ea341 (diff)
downloadrockbox-ea4ed4961a51a323107cbf66c1d4ecf90818666b.tar.gz
rockbox-ea4ed4961a51a323107cbf66c1d4ecf90818666b.zip
simplify the sansa mi4 too and added some attempts to documentation of the
variables now than none of our current targets need/use encryption git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10802 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools/mkmi4.sh')
-rwxr-xr-xtools/mkmi4.sh13
1 files changed, 9 insertions, 4 deletions
diff --git a/tools/mkmi4.sh b/tools/mkmi4.sh
index 8e9a4bdc84..75046654e3 100755
--- a/tools/mkmi4.sh
+++ b/tools/mkmi4.sh
@@ -56,19 +56,24 @@ if test -z "$output"; then
56 help 56 help
57fi 57fi
58 58
59# sign - if the firmware should be DSA signed with a dummy (only 010301
60# firmwares)
61# tea - name of the TEA crypt key to use for encrypting, but only if ...
62# encrypt - is set to "yes" for encrypting the firmware
59case $target in 63case $target in
64 # fake example)
65 # sign="yes"
66 # encrypt="yes"
67 # tea=targetkey
68 # ;;
60 e200) 69 e200)
61 sign="yes" 70 sign="yes"
62 encrypt="yes"
63 tea=sansa
64 ;; 71 ;;
65 h10) 72 h10)
66 sign="yes" 73 sign="yes"
67 tea=20gc_eng
68 ;; 74 ;;
69 h10_5gb) 75 h10_5gb)
70 buildopt="-2" 76 buildopt="-2"
71 tea=default
72 ;; 77 ;;
73 *) 78 *)
74 echo "unsupported target" 79 echo "unsupported target"