slitaz-forge rev 304

cook: add an index for cross cooker's
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 13 01:05:32 2012 +0200 (2012-05-13)
parents 98f989903f08
children 8903faf5cfbb
files cook/cross/index.cgi
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/cook/cross/index.cgi	Sun May 13 01:05:32 2012 +0200
     1.3 @@ -0,0 +1,30 @@
     1.4 +#!/bin/sh
     1.5 +#
     1.6 +#. /usr/lib/slitaz/httphelper
     1.7 +#header
     1.8 +echo "Content-Type: text/html"
     1.9 +echo ""
    1.10 +
    1.11 +cat header.html
    1.12 +
    1.13 +cat << EOT
    1.14 +
    1.15 +<h2>Cooker's</h2>
    1.16 +
    1.17 +<p>
    1.18 +	SliTaz is actually ported to the ARM platform and work is on the stove
    1.19 +	for the x86_64 architecture. Please read the Cookutils cross howto for
    1.20 +	more informations.
    1.21 +</p>
    1.22 +
    1.23 +<ul>
    1.24 +	<li><a href="arm/">arm</a><li>
    1.25 +	<li><a href="x86_64/">x86_64</a><li>
    1.26 +</ul>
    1.27 +
    1.28 +</div>
    1.29 +</body>
    1.30 +</html>
    1.31 +EOT
    1.32 +
    1.33 +exit 0