summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDalon Westergreen <dwesterg@gmail.com>2016-03-16 07:39:46 -0700
committerDalon Westergreen <dwesterg@gmail.com>2016-03-16 07:40:59 -0700
commit23f4c06f7b508e382fcca4b691d42551efae8800 (patch)
tree8b542a5e98a35728451e4b8a9463fee7f987b713
parente38caf8eb684ac51000096e7a32656c973e7a643 (diff)
downloadmeta-altera-23f4c06f7b508e382fcca4b691d42551efae8800.tar.gz
Add detail to README
-rw-r--r--README.md24
1 files changed, 20 insertions, 4 deletions
diff --git a/README.md b/README.md
index a6bc000..70e4846 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,8 @@ and raj.khem@gmail.com
11Maintainers: Khem Raj <raj.khem@gmail.com> 11Maintainers: Khem Raj <raj.khem@gmail.com>
12 Yves Vandervennet <yvanderv@opensource.altera.com> 12 Yves Vandervennet <yvanderv@opensource.altera.com>
13 13
14Specifying Kernel Version 14Specifying Kernel Versions
15========================= 15==========================
16This layer has a few providers for the kernel. These are the linux-altera, 16This 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 17linux-altera-ltsi, and linux-altera-ltsi-rt kernels. There are also
18linux-altera-dev and linux-altera-ltsi-dev kernels which follow the current 18linux-altera-dev and linux-altera-ltsi-dev kernels which follow the current
@@ -31,9 +31,25 @@ or for the linux-altera-ltsi kernel
31Please note that older kernels will not compile with GCC 5+ and you will need 31Please 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. 32to specify in your conf/local.conf to revert to older 4.9 toolchain.
33 33
34 GCCVERSION = "4.9%"
35 34
36 or 35Specifying Toolchain Versions
36=============================
37The default Toolchain for ARM in Angstrom is the linaro toolchain. To specify
38the use of this toolchain in Yocto add the following to conf/local.conf
39
40 GCCVERSION = "linaro-5.2"
41 SDKGCCVERSION = "linaro-5.2"
42 DEFAULTTUNE = "cortexa9hf-neon"
43
44To use older kernels not supported by GCC 5+ you will need to use the 4.9 toolchain.
45
46For Yocto:
47 GCCVERSION = "linaro-4.9"
48 SDKGCCVERSION = "linaro-4.9"
49 DEFAULTTUNE = "cortexa9hf-neon"
50
51For Angstrom:
37 52
38 ANGSTROM_GCC_VERSION_arm = "linaro-4.9%" 53 ANGSTROM_GCC_VERSION_arm = "linaro-4.9%"
39 54
55