Move binary compatible amiga build to an Alternative

This commit is contained in:
deadwood 2020-12-06 12:06:46 +01:00
parent 4422036c6f
commit d66ad38551
2 changed files with 1 additions and 16 deletions

View File

@ -2,7 +2,6 @@
branch | target | description | how to build | download
-------|--------|-------------|------------- |---------
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/)
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/)
### Backwards compatibility
@ -22,6 +21,7 @@ branch | target | description | how to build | download
-------|--------|-------------|--------------|---------
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 | 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 | 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

@ -3,8 +3,6 @@ show_selection ()
printf " 1) toolchain-core-x86_64\n"
printf " 2) core-linux-x86_64 (DEBUG)\n"
printf " 3) core-pc-x86_64\n"
printf " 10) toolchain-core-m68k\n"
printf " 11) core-amiga-m68k\n"
}
process_selection ()
@ -30,19 +28,6 @@ process_selection ()
CONFIGURE_OPTS="--with-aros-toolchain=yes"
MAKE_TARGET_2="bootiso"
;;
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
}