+332
authorshort <>
Tue, 7 Oct 2003 07:03:18 +0000 (07:03 +0000)
committershort <>
Tue, 7 Oct 2003 07:03:18 +0000 (07:03 +0000)
configure.ac
project/332/332-noexec.tar.gz [new file with mode: 0644]
project/332/Index.html.pl [new file with mode: 0755]
project/332/ListItem.pm [new file with mode: 0755]
project/332/Makefile.am [new file with mode: 0644]
project/Makefile.am

index 6e536d2..9292473 100644 (file)
@@ -80,6 +80,7 @@ Makefile
 ./project/TraceFS/Makefile
 ./project/AutoGen/Makefile
 ./project/gsmperl/Makefile
+./project/332/Makefile
 ])
 
 echo done.
diff --git a/project/332/332-noexec.tar.gz b/project/332/332-noexec.tar.gz
new file mode 100644 (file)
index 0000000..eb18e92
Binary files /dev/null and b/project/332/332-noexec.tar.gz differ
diff --git a/project/332/Index.html.pl b/project/332/Index.html.pl
new file mode 100755 (executable)
index 0000000..adeb23d
--- /dev/null
@@ -0,0 +1,39 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Main page of 'My::Project::332'
+# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; exactly version 2 of June 1991 is required
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package project::332::Index;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
+use My::Web;
+Wuse 'My::Project';
+Wuse 'project::332::ListItem';
+
+
+My::Project->init_project(
+               "__PACKAGE__"=>__PACKAGE__,
+               "ListItem"=>\@project::332::ListItem::ListItem,
+               );
+
+My::Web->footer();
diff --git a/project/332/ListItem.pm b/project/332/ListItem.pm
new file mode 100755 (executable)
index 0000000..6975be2
--- /dev/null
@@ -0,0 +1,66 @@
+#! /usr/bin/perl
+# 
+# $Id$
+# Definition of 'My::Project::332' for list.cgi.pl
+# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; exactly version 2 of June 1991 is required
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+package project::332::ListItem;
+require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
+use strict;
+use warnings;
+
+use My::Web;
+
+
+our @ListItem=(
+               "name"=>"AmigaOS port to 68332",
+               "priority"=>8,
+               "download-sources without patched core"=>"332-noexec.tar.gz",
+               "summary"=>"AmigaOS kernel port to embedded OS",
+               "license"=>"PD",
+               "maintenance"=>"ready",
+               "sponsorship"=>@{[ a_href('http://www.princip.cz/','Princip') ]},
+               "language"=>"680x0 asm, C",
+               "description"=><<"HERE",
+<p>Core of the AmigaOS kernel (exec.library) was ported to embedded Motorola 68332 computer.
+It is designed as the kernel for GPS-tracking device.
+Used Motorola 68332 computer features 1.25MB of RAM and 512KB of FlashEPROM.</p>
+<p>Fortunately Pavel Troller already disassembled the kernel core in the past
+and this project could be based on his reverse engineered sources.</p>
+<p>@{[ a_href '332-noexec.tar.gz','Downloadable sources' ]} archive unfortunately
+legally cannot contain the real code of the ported AmigaOS kernel core as
+@{[ a_href 'http://amigaworld.net/modules/newbb/viewtopic.php?forum=2&topic_id=224','it is copyrighted.' ]}.
+You should send me a mail with md5sum(1)s of AmigaOS kernel including
+statement you are the legal owner to let me send you the missing patched
+AmigaOS kernel core disassembled sources.</p>
+<p>The provided kernel lists the following features:</p>
+<ul>
+       <li>memory management</li>
+       <li>system objects lists operations</li>
+       <li>multitasking</li>
+       <li>intertask messaging</li>
+       <li>device drivers communication<li>
+       <li>locking/synchronization</li>
+       <li>system libraries management</li>
+       <li>server side for remote serial port debuggin</li>
+</ul>
+HERE
+               );
+
+1;
diff --git a/project/332/Makefile.am b/project/332/Makefile.am
new file mode 100644 (file)
index 0000000..5a40374
--- /dev/null
@@ -0,0 +1,23 @@
+# $Id$
+# automake source for the Makefile of project/332/ subdir
+# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# 
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; exactly version 2 of June 1991 is required
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+
+include $(top_srcdir)/Makefile-head.am
+
+EXTRA_DIST+= \
+       ListItem.pm \
+       Index.html.pl
index 5141d05..67a9ea0 100644 (file)
@@ -63,7 +63,8 @@ SUBDIRS= \
                ShortRel        \
                TraceFS         \
                AutoGen         \
-               gsmperl
+               gsmperl         \
+               332
 
 EXTRA_DIST+= \
                Index.html.pl \