├── .gitattributes ├── .gitignore ├── README.md ├── bash_patches ├── bashline.c.patch ├── config-top.h.patch ├── config.h.in.patch ├── fpurge.c.patch ├── parse.y.patch ├── pathnames.h.patch ├── rlconf.h.patch ├── tmpfile.c.patch └── y.tab.c.patch ├── bc_libmath.h ├── coreutils.patch ├── coreutils_modules ├── nano_wrapper └── ndk_static_patches ├── coreutils.patch ├── diffutils.patch ├── findutils.patch ├── patch.patch └── tar.patch /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/README.md -------------------------------------------------------------------------------- /bash_patches/bashline.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/bashline.c.patch -------------------------------------------------------------------------------- /bash_patches/config-top.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/config-top.h.patch -------------------------------------------------------------------------------- /bash_patches/config.h.in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/config.h.in.patch -------------------------------------------------------------------------------- /bash_patches/fpurge.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/fpurge.c.patch -------------------------------------------------------------------------------- /bash_patches/parse.y.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/parse.y.patch -------------------------------------------------------------------------------- /bash_patches/pathnames.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/pathnames.h.patch -------------------------------------------------------------------------------- /bash_patches/rlconf.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/rlconf.h.patch -------------------------------------------------------------------------------- /bash_patches/tmpfile.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/tmpfile.c.patch -------------------------------------------------------------------------------- /bash_patches/y.tab.c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bash_patches/y.tab.c.patch -------------------------------------------------------------------------------- /bc_libmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/bc_libmath.h -------------------------------------------------------------------------------- /coreutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/coreutils.patch -------------------------------------------------------------------------------- /coreutils_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/coreutils_modules -------------------------------------------------------------------------------- /nano_wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/nano_wrapper -------------------------------------------------------------------------------- /ndk_static_patches/coreutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/ndk_static_patches/coreutils.patch -------------------------------------------------------------------------------- /ndk_static_patches/diffutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/ndk_static_patches/diffutils.patch -------------------------------------------------------------------------------- /ndk_static_patches/findutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/ndk_static_patches/findutils.patch -------------------------------------------------------------------------------- /ndk_static_patches/patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/ndk_static_patches/patch.patch -------------------------------------------------------------------------------- /ndk_static_patches/tar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zackptg5/GNU-Utils-For-Android-Build-Script/HEAD/ndk_static_patches/tar.patch --------------------------------------------------------------------------------