Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Upgraded to glibc 2.27 (needed for AArch64) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | edd4c58c177407dfa49c2d39a969773d9f509fa0 |
User & Date: | rkeene 2018-02-19 02:28:18 |
Context
2018-02-19
| ||
02:42 | Migrated platform parameters to separate scripts check-in: fcb06ea4e4 user: rkeene tags: trunk | |
02:28 | Upgraded to glibc 2.27 (needed for AArch64) check-in: edd4c58c17 user: rkeene tags: trunk | |
2018-02-18
| ||
22:59 | Allow different kernel architectures to be specified check-in: ad02e80707 user: rkeene tags: trunk | |
Changes
Changes to scripts/post/02-glibc.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# URLs and versions if [ -z "${LINUX_VERS}" ]; then ## Keep in sync with 00-linux-kernel LINUX_VERS='3.2.98' fi if [ -z "${GLIBC_VERS}" ]; then GLIBC_VERS='2.26' GLIBC_TARBALL_SHA256="dcc2482b00fdb1c316f385f8180e182bbd37c065dc7d8281a4339d2834ef1be7" fi if [ -z "${GLIBC_URL}" ]; then GLIBC_URL="http://ftp.gnu.org/gnu/glibc/glibc-${GLIBC_VERS}.tar.gz" fi GLIBC_TARBALL="src/glibc-${GLIBC_VERS}.tar.gz" GLIBC_DIR="glibc-${GLIBC_VERS}" |
| | |
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# URLs and versions if [ -z "${LINUX_VERS}" ]; then ## Keep in sync with 00-linux-kernel LINUX_VERS='3.2.98' fi if [ -z "${GLIBC_VERS}" ]; then GLIBC_VERS='2.27' GLIBC_TARBALL_SHA256="881ca905e6b5eec724de7948f14d66a07d97bdee8013e1b2a7d021ff5d540522" fi if [ -z "${GLIBC_URL}" ]; then GLIBC_URL="http://ftp.gnu.org/gnu/glibc/glibc-${GLIBC_VERS}.tar.gz" fi GLIBC_TARBALL="src/glibc-${GLIBC_VERS}.tar.gz" GLIBC_DIR="glibc-${GLIBC_VERS}" |