From: Lawrence S. <ljs...@us...> - 2021-06-19 00:40:56
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via 2e285a00ad4f09f4de694aef9a9f4442daba3ae8 (commit) via e124df20e0e4cb1b94ee7a1a253f63fa46e310af (commit) from 8a8efb7aee698605b0f230ed9641f5bbc22d04e0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 2e285a00ad4f09f4de694aef9a9f4442daba3ae8 Merge: 8a8efb7 e124df2 Author: Lawrence Sebald <ljs...@us...> Date: Fri Jun 18 20:40:44 2021 -0400 Merge pull request #55 from Tchan0/DynamicSubArch Sub Arch Pass-through commit e124df20e0e4cb1b94ee7a1a253f63fa46e310af Author: Tchan0 <617...@us...> Date: Fri Jun 18 17:36:14 2021 +0200 Update environ.sh.sample ----------------------------------------------------------------------- Summary of changes: doc/environ.sh.sample | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/environ.sh.sample b/doc/environ.sh.sample index a87b984..8539dc6 100644 --- a/doc/environ.sh.sample +++ b/doc/environ.sh.sample @@ -17,7 +17,12 @@ export KOS_ARCH="dreamcast" # "pristine" - a normal Dreamcast console or HKT-0120 devkit # "navi" - a Dreamcast with the navi mod applied to it # "naomi" - a NAOMI or NAOMI 2 arcade board -export KOS_SUBARCH="pristine" +# You can also pre-define it in eg the build config of your IDE +if [ -z "${KOS_SUBARCH}" ] ; then + export KOS_SUBARCH="pristine" +else + export KOS_SUBARCH +fi # KOS main base path export KOS_BASE="/opt/toolchains/dc/kos" hooks/post-receive -- A pseudo Operating System for the Dreamcast. |