From: short <> Date: Tue, 7 Oct 2003 07:03:18 +0000 (+0000) Subject: +332 X-Git-Url: http://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=commitdiff_plain;h=a577d79f81500e57189152d6f7ddd7d0ab068908 +332 --- diff --git a/configure.ac b/configure.ac index 6e536d2..9292473 100644 --- a/configure.ac +++ b/configure.ac @@ -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 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 index 0000000..adeb23d --- /dev/null +++ b/project/332/Index.html.pl @@ -0,0 +1,39 @@ +#! /usr/bin/perl +# +# $Id$ +# Main page of 'My::Project::332' +# Copyright (C) 2003 Jan Kratochvil +# +# 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/,)[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 index 0000000..6975be2 --- /dev/null +++ b/project/332/ListItem.pm @@ -0,0 +1,66 @@ +#! /usr/bin/perl +# +# $Id$ +# Definition of 'My::Project::332' for list.cgi.pl +# Copyright (C) 2003 Jan Kratochvil +# +# 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", +

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.

+

Fortunately Pavel Troller already disassembled the kernel core in the past +and this project could be based on his reverse engineered sources.

+

@{[ 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.

+

The provided kernel lists the following features:

+
    +
  • memory management
  • +
  • system objects lists operations
  • +
  • multitasking
  • +
  • intertask messaging
  • +
  • device drivers communication
  • +
  • locking/synchronization
  • +
  • system libraries management
  • +
  • server side for remote serial port debuggin
  • +
+HERE + ); + +1; diff --git a/project/332/Makefile.am b/project/332/Makefile.am new file mode 100644 index 0000000..5a40374 --- /dev/null +++ b/project/332/Makefile.am @@ -0,0 +1,23 @@ +# $Id$ +# automake source for the Makefile of project/332/ subdir +# Copyright (C) 2003 Jan Kratochvil +# +# 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 diff --git a/project/Makefile.am b/project/Makefile.am index 5141d05..67a9ea0 100644 --- a/project/Makefile.am +++ b/project/Makefile.am @@ -63,7 +63,8 @@ SUBDIRS= \ ShortRel \ TraceFS \ AutoGen \ - gsmperl + gsmperl \ + 332 EXTRA_DIST+= \ Index.html.pl \