Go to file
deadwood a5ea56f1c1 Dispaly expected number of tests for comparison with actual run tests 2024-04-28 15:47:26 +02:00
arch Build after recent changes 2024-04-23 18:23:48 +02:00
boot mmakefile*: header fixes 2021-05-02 13:52:04 +02:00
bootstrap a bit more casting gymnastics to also satisfy codecy (void * arithmetic) 2024-04-23 16:36:39 +02:00
compiler Support registering atexit() functions before CrtProgCtx is created 2024-04-26 19:31:14 +02:00
config move TARGET_UNITTESTS to target.cfg so that metamake sees the var. 2024-04-24 14:22:22 +02:00
developer Remove empty setup/teardown steps 2024-04-28 15:47:02 +02:00
external Synchronize public version with internal version 2022-11-16 12:45:13 +01:00
images rename the amiga/windows harddisk icons to suitable filesytem versions. use the FATHarddisk icon for the Windows hosted system drive. 2024-04-23 16:49:32 +02:00
rom bump version to match the one in the config file. 2024-04-24 16:32:18 +02:00
scripts Dispaly expected number of tests for comparison with actual run tests 2024-04-28 15:47:26 +02:00
tools update the gcc 8 and 11 patches aswell 2024-04-24 14:21:46 +02:00
workbench 64bit corrections. 2024-04-23 17:50:29 +02:00
.gitattributes dont use working-tree-encoding, just use encoding 2020-04-26 15:20:31 +02:00
.gitignore Update gitignore 2023-04-03 13:29:52 +02:00
.gitmodules Delete the posix.1 submodule 2020-05-09 16:07:59 +02:00
ACKNOWLEDGEMENTS
CONTRIBUTING.md Update contributing rules. 2023-02-26 09:58:09 +01:00
INSTALL.md Add information on using cross-compiler outside of build system 2023-02-02 19:00:48 +01:00
LEGAL
LICENSE
LICENSE.Author Provide additional licenses to all of my changes. 2017-04-02 12:53:42 +00:00
LICENSE.GPL
LICENSE.LGPL
Makefile.in invoke the all target 2022-06-23 13:49:34 +02:00
README.md Change URL for AROS-M68K downloads 2023-03-20 19:21:22 +01:00
acinclude.m4 use absolute path's to the tools. 2019-04-14 19:01:57 +00:00
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 update grub2 to v2.06 2024-04-23 16:45:22 +02:00
configure.in update grub2 to v2.06 2024-04-23 16:45:22 +02:00
license.html
mmake.config.in # add the .git and .github dirs to metamakes ignoredirs # detect if aros is built in the source tree and display a warning in configure. detect if it is build in a sub-directory of the source tree and add that directory to metamakes ignoredirs. 2022-06-24 10:32:49 +02:00
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 M68K

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.