summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2016-03-15 12:20:04 -0700
committerKhem Raj <raj.khem@gmail.com>2016-03-15 12:20:04 -0700
commitc7b4f8eb5a3dd47fcdf0306c67b0ed1f863b5cde (patch)
tree9ab8811becb213589abd0ec7596b69cb31ec8307
parentaa21711cd9c7a753a34108fe0d8d286fc255e5be (diff)
parent460b55ee53080ac37c815cc7d88121bafa127b02 (diff)
downloadmeta-altera-c7b4f8eb5a3dd47fcdf0306c67b0ed1f863b5cde.tar.gz
Merge pull request #16 from dwesterg/master
Update README with information regarding kernel selection
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
index 74d6c75..a6bc000 100644
--- a/README.md
+++ b/README.md
@@ -10,3 +10,30 @@ and raj.khem@gmail.com
10 10
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
14Specifying Kernel Version
15=========================
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
18linux-altera-dev and linux-altera-ltsi-dev kernels which follow the current
19development versions of those kernels.
20
21To specify a linux-altera kernel, add the following to your conf/local.conf
22
23 PREFERRED_PROVIDER_virtual/kernel = "linux-altera"
24 PREFERRED_VERSION_linux-altera = "4.3%"
25
26or for the linux-altera-ltsi kernel
27
28 PREFERRED_PROVIDER_virtual/kernel = "linux-altera-ltsi"
29 PREFERRED_VERSION_linux-alterai-ltsi = "3.10%"
30
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.
33
34 GCCVERSION = "4.9%"
35
36 or
37
38 ANGSTROM_GCC_VERSION_arm = "linaro-4.9%"
39