aboutsummaryrefslogtreecommitdiffstats
path: root/CUSTOMIZE.md
diff options
context:
space:
mode:
Diffstat (limited to 'CUSTOMIZE.md')
-rw-r--r--CUSTOMIZE.md37
1 files changed, 26 insertions, 11 deletions
diff --git a/CUSTOMIZE.md b/CUSTOMIZE.md
index 36a91687..4dfc1554 100644
--- a/CUSTOMIZE.md
+++ b/CUSTOMIZE.md
@@ -37,22 +37,37 @@ target.
#### Supported software features
-| Software feature | Configuration variable | Configuration values | Default value | Supported machines |
-|:----------------------|:----------------------------|:---------------------|:--------------|:-------------------|
-| ON-TARGET DEVELOPMENT | EXTRA_IMAGE_FEATURES_append | tools-sdk | | e3000, rome |
-| ON-TARGET DEBUGGING | EXTRA_IMAGE_FEATURES_append | tools-debug | | e3000, rome |
-| ON-TARGET PROFILING | EXTRA_IMAGE_FEATURES_append | tools-profile | | e3000, rome |
-| RT KERNEL | RT_KERNEL_AMD | yes, no | no | e3000, rome |
+| Software feature | Configuration variable | Configuration values | Default value | Supported machines |
+|:----------------------|:----------------------------------|:----------------------------|:--------------|:-------------------|
+| ON-TARGET DEVELOPMENT | EXTRA_IMAGE_FEATURES:append | tools-sdk | | all |
+| ON-TARGET DEBUGGING | EXTRA_IMAGE_FEATURES:append | tools-debug | | all |
+| ON-TARGET PROFILING | EXTRA_IMAGE_FEATURES:append | tools-profile | | all |
+| RT KERNEL | PREFERRED_PROVIDER_virtual/kernel | linux-yocto, linux-yocto-rt | linux-yocto | all |
#### Example configuration in local.conf
```sh
-EXTRA_IMAGE_FEATURES_append = " tools-sdk"
-EXTRA_IMAGE_FEATURES_append = " tools-debug"
-EXTRA_IMAGE_FEATURES_append = " tools-profile"
+EXTRA_IMAGE_FEATURES:append = " tools-sdk"
+EXTRA_IMAGE_FEATURES:append = " tools-debug"
+EXTRA_IMAGE_FEATURES:append = " tools-profile"
# Please run 'bitbake -c clean virtual/kernel' everytime before
-# configuring the RT_KERNEL_AMD variable
-RT_KERNEL_AMD = "yes"
+# configuring the PREFERRED_PROVIDER_virtual/kernel variable
+PREFERRED_PROVIDER_virtual/kernel = "linux-yocto-rt"
+```
+
+If you use the iso image, you can choose to `boot` from iso directly, or
+to `install` the system to existing hard drive.
+
+By default, the user interactive console is the serial port.
+
+To install from vga console, edit the platform config file of you machine
+`meta-amd-bsp/conf/machine/include/<platform>.inc`
+and set tty0 as the last console option of the `APPEND` variable.
+
+Example:
+```
+Set `APPEND += "console=tty0 console=ttyS0,115200n8"` to install from serial console.
+Set `APPEND += "console=ttyS0,115200n8 console=tty0"` to install from vga console.
```
---