Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Added AArch64 kernel parameters |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
2d7e70b7ac594e325aff36df784e4c59 |
| User & Date: | rkeene 2018-02-19 02:42:52 |
Context
|
2018-02-19
| ||
| 02:43 | Added AArch64 Linux generic (stage1) platform check-in: 6babeac4ee user: rkeene tags: trunk | |
| 02:42 | Added AArch64 kernel parameters check-in: 2d7e70b7ac user: rkeene tags: trunk | |
| 02:42 | Migrated platform parameters to separate scripts check-in: fcb06ea4e4 user: rkeene tags: trunk | |
Changes
Changes to scripts/post/00-linux-kernel.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#! /bin/bash
# Platform identification
CCNAME="$1"
CCDIR="$2"
PREFIX="$3"
STAGE="$4"
. 'scripts/common'
# Platform-specific adjustments
kernelArch="${arch}"
# URLs and versions
if [ -z "${LINUX_VERS}" ]; then
LINUX_VERS='3.2.98'
LINUX_TARBALL_SHA256="f31dc3ad9473086b413f8cd3daef1a8003481eb25910a617c74cbc640635eb31"
fi
if [ -z "${LINUX_URL}" ]; then
| > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#! /bin/bash
# Platform identification
CCNAME="$1"
CCDIR="$2"
PREFIX="$3"
STAGE="$4"
. 'scripts/common'
# Platform-specific adjustments
kernelArch="${arch}"
case "${kernelArch}" in
aarch64)
kernelArch='arm64'
;;
esac
# URLs and versions
if [ -z "${LINUX_VERS}" ]; then
LINUX_VERS='3.2.98'
LINUX_TARBALL_SHA256="f31dc3ad9473086b413f8cd3daef1a8003481eb25910a617c74cbc640635eb31"
fi
if [ -z "${LINUX_URL}" ]; then
|
| ︙ | ︙ |