summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-03-16 13:17:49 -0700
committerKhem Raj <raj.khem@gmail.com>2016-03-16 13:17:49 -0700
commita46550fc70acdbba33cfbb1b7cc39f54808c5cfd (patch)
tree46822e155ab6ef59a71b9ba9b150dfc289f9d62e
parente38caf8eb684ac51000096e7a32656c973e7a643 (diff)
parent6f118a88648cd0a8545293b22e27c129e8318f5e (diff)
downloadmeta-altera-a46550fc70acdbba33cfbb1b7cc39f54808c5cfd.tar.gz
Merge pull request #21 from dwesterg/jethro
Add detail to README
-rw-r--r--README.md36
1 files changed, 26 insertions, 10 deletions
diff --git a/README.md b/README.md
index a6bc000..f77e872 100644
--- a/README.md
+++ b/README.md
@@ -5,14 +5,8 @@ This layer works with poky and Angstrom
5Please follow the recommended setup procedures of your OE distribution. 5Please follow the recommended setup procedures of your OE distribution.
6 6
7 7
8Send pull requests, patches, comments or questions to yvanderv@opensource.altera.com 8Choosing Kernel Versions
9and raj.khem@gmail.com 9==========================
10
11Maintainers: Khem Raj <raj.khem@gmail.com>
12 Yves Vandervennet <yvanderv@opensource.altera.com>
13
14Specifying Kernel Version
15=========================
16This layer has a few providers for the kernel. These are the linux-altera, 10This layer has a few providers for the kernel. These are the linux-altera,
17linux-altera-ltsi, and linux-altera-ltsi-rt kernels. There are also 11linux-altera-ltsi, and linux-altera-ltsi-rt kernels. There are also
18linux-altera-dev and linux-altera-ltsi-dev kernels which follow the current 12linux-altera-dev and linux-altera-ltsi-dev kernels which follow the current
@@ -31,9 +25,31 @@ or for the linux-altera-ltsi kernel
31Please note that older kernels will not compile with GCC 5+ and you will need 25Please note that older kernels will not compile with GCC 5+ and you will need
32to specify in your conf/local.conf to revert to older 4.9 toolchain. 26to specify in your conf/local.conf to revert to older 4.9 toolchain.
33 27
34 GCCVERSION = "4.9%"
35 28
36 or 29Choosing Toolchain Versions
30=============================
31The default Toolchain for ARM in Angstrom is the linaro toolchain. To specify
32the use of this toolchain in Yocto add the following to conf/local.conf
33
34 GCCVERSION = "linaro-5.2"
35 SDKGCCVERSION = "linaro-5.2"
36 DEFAULTTUNE = "cortexa9hf-neon"
37
38To use older kernels not supported by GCC 5+ you will need to use the 4.9 toolchain.
39
40For Yocto:
41 GCCVERSION = "linaro-4.9"
42 SDKGCCVERSION = "linaro-4.9"
43 DEFAULTTUNE = "cortexa9hf-neon"
44
45For Angstrom:
37 46
38 ANGSTROM_GCC_VERSION_arm = "linaro-4.9%" 47 ANGSTROM_GCC_VERSION_arm = "linaro-4.9%"
39 48
49
50
51Send pull requests, patches, comments or questions to yvanderv@opensource.altera.com
52and raj.khem@gmail.com
53
54Maintainers: Khem Raj <raj.khem@gmail.com>
55 Yves Vandervennet <yvanderv@opensource.altera.com>