Revert "Move binary compatible amiga build to an Alternative"

This reverts commit d66ad38551.
This commit is contained in:
deadwood 2021-04-18 09:34:12 +02:00
parent 6c80902a75
commit 4b4eaa9a39
2 changed files with 16 additions and 1 deletions

View File

@ -3,6 +3,7 @@
branch | target | description | how to build | download
-------|--------|-------------|------------- |---------
[master](https://github.com/deadw00d/AROS/tree/master) | linux-x86_64 | Stable and always backwards compatible hosted version | [Core](https://github.com/deadw00d/AROS/blob/master/INSTALL.md) | [Core](https://vps691225.ovh.net/download/builds/AROS/)
[master](https://github.com/deadw00d/AROS/tree/master) | amiga-m68k | Amiga replacement ROM and system software | [Core](https://github.com/deadw00d/AROS/blob/master/INSTALL.md) | [Core](https://vps691225.ovh.net/download/builds/AROS/)
### Backwards compatibility
@ -21,7 +22,6 @@ branch | target | description | how to build | download
-------|--------|-------------|--------------|---------
[alt-runtime](https://github.com/deadw00d/AROS/tree/alt-runtime) | runtimelinux-x86_64 | AxRuntime for Linux x86_64 | [AxRuntime](https://github.com/deadw00d/AROS/blob/alt-runtime/INSTALL.md) | [AxRuntime](https://vps691225.ovh.net/download/builds/AxRuntime/)
[alt-abiv0](https://github.com/deadw00d/AROS/tree/alt-abiv0) | pc-i386 | ABI_V0 version of native 32-bit AROS | [ABIv0](https://github.com/deadw00d/AROS/blob/alt-abiv0/INSTALL.md) | [ABIv0](https://vps691225.ovh.net/download/builds/AROS-ABIV0/)
[alt-bincompat](https://github.com/deadw00d/AROS/tree/alt-bincompat) | amiga-m68k | Amiga replacement ROM and system software | [Amiga](https://github.com/deadw00d/AROS/blob/alt-bincompat/INSTALL.md) | [Amiga](https://vps691225.ovh.net/download/builds/AROS/)
## Relation between Core and Alternatives

View File

@ -4,6 +4,8 @@ show_selection ()
printf " 2) core-linux-x86_64 (DEBUG)\n"
printf " 3) core-pc-x86_64\n"
printf " 4) core-contrib-x86_64\n"
printf " 10) toolchain-core-m68k\n"
printf " 11) core-amiga-m68k\n"
}
process_selection ()
@ -38,6 +40,19 @@ process_selection ()
MAKE_TARGET_2="mmake"
MAKE_TARGET_3="contrib"
;;
10)
TOOLCHAIN_DIR=$(pwd)/toolchain-core-m68k
BUILD_DIR=$(pwd)/toolchain-core-m68k-build
TOOLCHAIN_BUILD=yes
CONFIGURE_TARGET=amiga-m68k
MAKE_TARGET="-s crosstools"
;;
11)
TOOLCHAIN_DIR=$(pwd)/toolchain-core-m68k
BUILD_DIR=$(pwd)/core-amiga-m68k
CONFIGURE_TARGET=amiga-m68k
CONFIGURE_OPTS="--with-aros-toolchain=yes"
;;
esac
}