diff --git a/ChangeLog.md b/ChangeLog.md index 958dc9b..b44717f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -12,7 +12,7 @@ * note: missing `nanodroid_init` will still make the default value used, as desired * Installer, Patcher, SysTest, Uninstaller - * improve detection of system-as-root devices and fix issues mount `/system` + * improve detection of system-as-root devices and fix issues mounting `/system` * ensure we mount `/vendor` block device if direct mounting fails * fixes issue with mounting `/vendor` on some devices in TWRP * only create `/system/vendor -> /vendor` compat link needed on some devices if there's no `vendor_${SLOT}` partition @@ -42,6 +42,11 @@ * update and improve Issues section * some minor improvements +## Updates + +* manual + * GNU Bash (5.1-beta1) + ## 22.9.20200910 "[Tiefseequappe]" ### General Changes diff --git a/Full/system/xbin/bash.bin.arm b/Full/system/xbin/bash.bin.arm index df2696f..218d528 100755 Binary files a/Full/system/xbin/bash.bin.arm and b/Full/system/xbin/bash.bin.arm differ diff --git a/Full/system/xbin/bash.bin.x86 b/Full/system/xbin/bash.bin.x86 index 2e5a2c8..b17ca46 100755 Binary files a/Full/system/xbin/bash.bin.x86 and b/Full/system/xbin/bash.bin.x86 differ diff --git a/Full/system/xbin/bashbug.arm b/Full/system/xbin/bashbug.arm index d00cac4..2a36136 100755 --- a/Full/system/xbin/bashbug.arm +++ b/Full/system/xbin/bashbug.arm @@ -7,7 +7,7 @@ # chet@cwru.edu and, optionally, to bash-testers@cwru.edu. # Other versions send mail to bug-bash@gnu.org. # -# Copyright (C) 1996-2004 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -32,7 +32,7 @@ CC="arm-linux-gnueabi-gcc" CFLAGS="-g -O2 -Wno-parentheses -Wno-format-security" RELEASE="5.1" PATCHLEVEL="0" -RELSTATUS="alpha" +RELSTATUS="beta" MACHTYPE="arm-unknown-linux-gnueabi" PATH=/bin:/usr/bin:/usr/local/bin:$PATH @@ -43,7 +43,7 @@ export PATH #Securely create a temporary directory for the temporary files TEMPDIR=$TMPDIR/bbug.$$ -(umask 077 && mkdir $TEMPDIR) || { +(umask 077 && mkdir "$TEMPDIR") || { echo "$0: could not create temporary directory" >&2 exit 1 } @@ -132,6 +132,8 @@ if [ -z "$DEFEDITOR" ] && [ -z "$EDITOR" ]; then DEFEDITOR=emacs elif [ -x /usr/bin/xemacs ]; then DEFEDITOR=xemacs + elif [ -x /usr/bin/nano ]; then + DEFEDITOR=nano elif [ -x /usr/contrib/bin/jove ]; then DEFEDITOR=jove elif [ -x /usr/local/bin/jove ]; then diff --git a/Full/system/xbin/bashbug.x86 b/Full/system/xbin/bashbug.x86 index 304b723..a176544 100755 --- a/Full/system/xbin/bashbug.x86 +++ b/Full/system/xbin/bashbug.x86 @@ -7,7 +7,7 @@ # chet@cwru.edu and, optionally, to bash-testers@cwru.edu. # Other versions send mail to bug-bash@gnu.org. # -# Copyright (C) 1996-2004 Free Software Foundation, Inc. +# Copyright (C) 1996-2020 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,14 +26,14 @@ # configuration section: # these variables are filled in by the make target in Makefile # -MACHINE="x86_64" +MACHINE="i686" OS="linux-gnu" CC="gcc" CFLAGS="-m32 " RELEASE="5.1" PATCHLEVEL="0" -RELSTATUS="alpha" -MACHTYPE="x86_64-pc-linux-gnu" +RELSTATUS="beta" +MACHTYPE="i686-pc-linux-gnu" PATH=/bin:/usr/bin:/usr/local/bin:$PATH export PATH @@ -43,7 +43,7 @@ export PATH #Securely create a temporary directory for the temporary files TEMPDIR=$TMPDIR/bbug.$$ -(umask 077 && mkdir $TEMPDIR) || { +(umask 077 && mkdir "$TEMPDIR") || { echo "$0: could not create temporary directory" >&2 exit 1 } @@ -132,6 +132,8 @@ if [ -z "$DEFEDITOR" ] && [ -z "$EDITOR" ]; then DEFEDITOR=emacs elif [ -x /usr/bin/xemacs ]; then DEFEDITOR=xemacs + elif [ -x /usr/bin/nano ]; then + DEFEDITOR=nano elif [ -x /usr/contrib/bin/jove ]; then DEFEDITOR=jove elif [ -x /usr/local/bin/jove ]; then