Last change
on this file was
6,
checked in by guillaume, 17 years ago
|
Publication tt-ttols v0.1
Des outils pour le TwinTact
|
-
Property svn:executable set to
*
|
File size:
858 bytes
|
Line | |
---|
1 | #! /bin/bash |
---|
2 | |
---|
3 | # Un numéro de version pour générer une archive |
---|
4 | TT_TOOLS_VERSIONS='0.1' |
---|
5 | |
---|
6 | # Liste des archives disponibles |
---|
7 | ARCHIVES='BUSYBOX DROPBEAR TOOLCHAIN' |
---|
8 | |
---|
9 | # Paramètres pour busybox |
---|
10 | BUSYBOX_REV='1.9.1' |
---|
11 | BUSYBOX_URL='http://busybox.net/downloads' |
---|
12 | BUSYBOX_SHA='f978834055e9cc65395e23672de1a57904a61791' |
---|
13 | |
---|
14 | # Paramètres pour dropbear |
---|
15 | DROPBEAR_REV='0.50' |
---|
16 | DROPBEAR_URL='http://matt.ucc.asn.au/dropbear/releases' |
---|
17 | DROPBEAR_SHA='97f31bbe1d36f156ec895de97ecc1d400da5f0e5' |
---|
18 | |
---|
19 | TOOLCHAIN_REV='armv4tl-hardhat-linux' |
---|
20 | TOOLCHAIN_URL='http://opentwin.org/files' |
---|
21 | TOOLCHAIN_SHA='4de3aed2835c0b80e291c3f59550d495efd6b8ed' |
---|
22 | |
---|
23 | # Variables statiques |
---|
24 | BUSYBOX_BAS="busybox-${BUSYBOX_REV}" |
---|
25 | BUSYBOX_TAR="${BUSYBOX_BAS}.tar.bz2" |
---|
26 | |
---|
27 | DROPBEAR_BAS="dropbear-${DROPBEAR_REV}" |
---|
28 | DROPBEAR_TAR="${DROPBEAR_BAS}.tar.bz2" |
---|
29 | |
---|
30 | TOOLCHAIN_BAS="${TOOLCHAIN_REV}" |
---|
31 | TOOLCHAIN_TAR="${TOOLCHAIN_BAS}.tar.bz2" |
---|
Note: See
TracBrowser
for help on using the repository browser.