slitaz-forge view cook/cross/index.cgi @ rev 497

cook: small cosmetic change
author Christophe Lincoln <pankso@slitaz.org>
date Mon Mar 31 23:11:11 2014 +0200 (2014-03-31)
parents 5fb7ae583a4d
children 2f410243eb36
line source
1 #!/bin/sh
2 #
3 #. /usr/lib/slitaz/httphelper.sh
4 #header
5 echo "Content-Type: text/html"
6 echo ""
8 cat header.html
10 cat << EOT
12 <h2>SliTaz Cross Cooker's</h2>
14 <p>
15 SliTaz is actually ported to the ARM platform and the x86_64
16 architecture can be cross or natively compiled but not officially
17 supported. Please read the Cookutils cross howto for more information.
18 </p>
20 <p>
21 SliTaz ARM website: <a href="http://arm.slitaz.org">arm.slitaz.org</a>
22 </p>
24 <pre>
25 Arch : <a href="arm/">arm</a>
26 Cross : <a href="arm/toolchain.cgi">toolchain</a>
27 </pre>
29 <pre>
30 Arch : <a href="x86_64/">x86_64</a>
31 Cross : <a href="x86_64/toolchain.cgi">toolchain</a>
32 </pre>
34 </div>
35 </body>
36 </html>
37 EOT
39 exit 0