Go to file
Kalamatee 65d01898df update freetype2 to version 2.12.1 2022-06-23 20:36:31 +02:00
arch prevent division by zero calibrating the tsc/lapic timers using pit. 2022-06-23 20:36:31 +02:00
boot mmakefile*: header fixes 2021-05-02 13:52:04 +02:00
bootstrap bootstrap, scripts: detabbed 2021-05-02 14:01:17 +02:00
compiler move the 8259a pic hardware definitions into a generic header. remove obsolete message about use of pit Channel 2. refactor timer init code. 2022-06-23 15:32:58 +02:00
config let rule_compile_cxx_multi and build_prog take the usetree switch. define the arch specific dependencies in the top level macro and explicitly define the dependency order. 2022-06-23 20:36:31 +02:00
developer update freetype2 to version 2.12.1 2022-06-23 20:36:31 +02:00
external dont generate the files every time. use the fileactionmsg macro to report what is happening. 2022-06-23 15:32:56 +02:00
images mmakefile*: header fixes 2021-05-02 13:52:04 +02:00
rom use CopyMem 2022-06-23 20:36:31 +02:00
scripts let cpy-dir-rec.py take a param to suppress output. output stripped down versions of the directories being copied to the log. 2022-06-23 15:32:56 +02:00
tools if we are building binutils for m68k, and there is an amigaoshunk or 68080 patch, apply it also. 2022-06-23 15:32:57 +02:00
workbench update freetype2 to version 2.12.1 2022-06-23 20:36:31 +02:00
.gitattributes
.gitignore
.gitmodules
ACKNOWLEDGEMENTS
CONTRIBUTING.md Extend contributing rules 2021-11-20 20:32:54 +01:00
INSTALL.md Add dh-make to required packages 2022-06-02 15:27:41 +02:00
LEGAL
LICENSE
LICENSE.Author
LICENSE.GPL
LICENSE.LGPL
Makefile.in invoke the all target 2022-06-23 13:49:34 +02:00
README.md Update download locations 2022-01-03 16:01:47 +01:00
acinclude.m4
aclocal.m4 import support macros for using Python, and detect if mako templates have been installed. 2021-05-01 21:37:30 +02:00
configure # use consistent capitalization for output strings. # dont output an additional yes detecting mako. # detect if gzip is installed for amiga-m68k targets (needed to pack the rom) # add an option to enable creating self extracting exes for the emergency boot floppy executables, and check if pythons crcmod is installed if it is enabled (required for pack_exe.py) 2022-06-23 15:32:57 +02:00
configure.in # use consistent capitalization for output strings. # dont output an additional yes detecting mako. # detect if gzip is installed for amiga-m68k targets (needed to pack the rom) # add an option to enable creating self extracting exes for the emergency boot floppy executables, and check if pythons crcmod is installed if it is enabled (required for pack_exe.py) 2022-06-23 15:32:57 +02:00
license.html
mmake.config.in
mmakefile mmakefile*: header fixes 2021-05-02 13:52:04 +02:00

README.md

Core

branch target description how to build download
master linux-x86_64 Stable and always backwards compatible hosted version, code-named ABIv11 Core ABIv11
master amiga-m68k Amiga replacement ROM and system software Core Core

Backwards compatibility

From system developer's point of view backwards compatibility is defined on a set of components below.

component kept stable
Application Binary Interface (ABI) YES
OS 3.1 API (examples: exec.library, input.device) YES
3rd party public libraries API (example: muimaster.library) YES
Classes, gadgets, datatypes API (examples: png.dataype) YES
AROS driver system (HIDD, oop.library) NO
AROS kernel components (example: kernel.resource) NO

From application developer's point of view backwards compatibility is defined as follow: As long as your application only uses components marked as YES, maintainter of Core guarantees that your application will always run while the system will continue evolving and changing its components. In case you notice that compatibility has been broken, please contact the maintainer and the situation will be amended.

Alternatives

branch target description how to build download
alt-runtime runtimelinux-x86_64 AxRuntime for Linux x86_64 AxRuntime AxRuntime
alt-abiv0 pc-i386 ABI_V0 version of native 32-bit AROS ABIv0 ABIv0

Relation between Core and Alternatives

The separation between Core and Alternatives has been introduced to allow different, sometimes diverging views and usages of AROS to co-exist and contribute to common base.

Core is defined as the base for all projects. Core defines a few targets which are preserved at each commit.

Alternatives can use two mechanisms to implement their changes:

  • arch mechanism of AROS build system which allows overwriting implementation on file basis and keeping the overwrites in master branch
  • periodically rebased git branches mechanism for changes that modify the base files and would break the Core targets

Every Alternative needs to have at minimum a branch starting with alt- even if all changes are done via arch mechanism. On that branch README.md file should be modified to describe the Alternative. Checking out this branch should allow anyone to build a working version of the Alternative.

Responsibilities

Every commit made to Core targets is required to preserve backwards compatibility. Maintainer of the Core targets reserves the right to revert a commit or ask for it to be moved to an Alternative branch.

Maintainers of Alternatives are responsible for adjusting their projects to changes happening in Core.

Maintainer of Core is responsible to keeping the number of wide-spread changes controlled, possibly batching them when needed and communicating to maintainers of Alternatives in advanced.