&My::Web::footer call is deprecated now, use just: exit;
[www.jankratochvil.net.git] / project / 332 / Index.pm
1 # $Id$
2 # Main page of 'My::Project::332'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::332::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"332",
32                 "platform"=>"unixdevel",
33                 "priority"=>630,
34                 "icon"=>"332-front-icon.jpeg",
35                 # FIXME: Relative 'download':
36                 "download-sources without patched core"=>"/project/332/332-noexec.tar.gz",
37                 "summary"=>"AmigaOS kernel port to embedded Motorola 68332",
38                 "license"=>"PD",
39                 "maintenance"=>"ready",
40                 "sponsorship"=>sub { return a_href('http://www.geoinvest.cz/','Geoinvest'); },
41                 "language"=>"680x0 asm, C",
42                 "description"=><<"HERE",
43 <p>Core of the AmigaOS kernel (exec.library) ported to embedded Motorola 68332 computer.
44 Reusable as OS for your embedded device suitable for developers with AmigaOS experience.</p>
45 HERE
46                 );
47
48
49 sub handler
50 {
51 project::Lib->init();
52
53
54 print <<"HERE";
55 <p>Project was destined as the kernel for GPS-tracking device.
56 Used Motorola 68332 computer features 1.25MB of RAM and 512KB of FlashEPROM.
57 Included build script with custom GCC target for AmigaOS.</p>
58 <p>Fortunately Pavel Troller already disassembled the kernel core in the past
59 and this project could be based on his reverse engineered sources.</p>
60 <p>@{[ a_href "/project/332/332-noexec.tar.gz",'Downloadable sources' ]} archive unfortunately
61 legally cannot contain the real code of the ported AmigaOS kernel core as
62 @{[ a_href 'http://amigaworld.net/modules/newbb/viewtopic.php?forum=2&topic_id=224','it is copyrighted.' ]}.
63 You should send me a mail with md5sum(1)s of AmigaOS kernel including
64 statement you are the legal owner to let me send you the missing patched
65 AmigaOS kernel core disassembled sources.</p>
66 <p>The provided kernel lists the following features:</p>
67 <ul>
68         <li>memory management</li>
69         <li>system objects lists operations</li>
70         <li>multitasking</li>
71         <li>intertask messaging</li>
72         <li>device drivers communication</li>
73         <li>locking/synchronization</li>
74         <li>system libraries management</li>
75         <li>server side for remote serial port debuggin</li>
76 </ul>
77
78 @{[ centerimg
79                                 ["332-front-board-small.jpeg","Custom Board (front)","a_href_img"=>"332-front-board.jpeg"],
80                                 ["332-back-board-small.jpeg" ,"Custom Board (back)" ,"a_href_img"=>"332-back-board.jpeg"]
81                 ]}
82 @{[ centerimg "332-front-CPU.jpeg" ,"68332 CPU Board Detail" ]}
83 HERE
84
85
86 exit;
87 }
88 1;