From: Lawrence S. <ljs...@us...> - 2018-09-04 22:07:19
|
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 123a7c30f75419b4710ad5ed976547f7db32b739 (commit) from f475e44de2a1e28ac298abdb713d4e253b02dc6c (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 123a7c30f75419b4710ad5ed976547f7db32b739 Author: Lawrence Sebald <ljs...@us...> Date: Tue Sep 4 18:06:31 2018 -0400 Remove --broken flag from the banner generation for git revisions. ----------------------------------------------------------------------- Summary of changes: doc/CHANGELOG | 1 + kernel/arch/dreamcast/kernel/make_banner.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/CHANGELOG b/doc/CHANGELOG index cda3dbe..d35789f 100644 --- a/doc/CHANGELOG +++ b/doc/CHANGELOG @@ -95,6 +95,7 @@ KallistiOS version 2.1.0 ----------------------------------------------- attached [Joe Fenton = JF] - DC Fixed the clobber list of several matrix-related assembly blobs. Thanks to kazade at DCEmulation for pointing out the issue [LS] +- *** Added the uname() function to retrieve the current kernel version [LS] KallistiOS version 2.0.0 ----------------------------------------------- - DC Broadband Adapter driver fixes [Dan Potter == DP] diff --git a/kernel/arch/dreamcast/kernel/make_banner.sh b/kernel/arch/dreamcast/kernel/make_banner.sh index 9b2479d..c79ad9e 100755 --- a/kernel/arch/dreamcast/kernel/make_banner.sh +++ b/kernel/arch/dreamcast/kernel/make_banner.sh @@ -10,7 +10,7 @@ relver='##version##' printf '"KallistiOS ' >> banner.h if [ -d "$KOS_BASE/.git" ]; then printf 'Git revision ' >> banner.h - gitrev=`git describe --dirty --broken` + gitrev=`git describe --dirty` printf "$gitrev" >> banner.h printf ':\\n\"\n' >> banner.h else hooks/post-receive -- A pseudo Operating System for the Dreamcast. |