aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Tucker <guillaume.tucker@collabora.com>2018-07-12 16:52:24 +0100
committerGuillaume Tucker <guillaume.tucker@collabora.com>2018-07-12 17:39:23 +0100
commitec8c147bd1992eda6f707ae96362997ca15f4eca (patch)
tree08ebabb899c2956332da8acf92c112a8cb8171ff
parent5b539c6e2bd6250d88ebe73f6da934edb9027399 (diff)
device-types: convert tegra124-nyan-big to Depthcharge
The standard bootloader for the tegra124-nyan-big Chromebook is Depthcharge, so update its device type accordingly now that it has been tested with LAVA with these firmware config values: CONFIG_BASE_ADDRESS=0x85000000 CONFIG_HEAP_SIZE=0x00800000 CONFIG_KERNEL_START=0x82000000 CONFIG_KERNEL_SIZE=0x3000000 This allows the device to boot using a FIT image with an initramfs and a mainline kernel built with multi_v7_defconfig. Change-Id: Ifc699769fe7e64311a764a47825cae689dd49e4f Signed-off-by: Guillaume Tucker <guillaume.tucker@collabora.com>
-rw-r--r--lava_scheduler_app/tests/device-types/tegra124-nyan-big.jinja214
1 files changed, 7 insertions, 7 deletions
diff --git a/lava_scheduler_app/tests/device-types/tegra124-nyan-big.jinja2 b/lava_scheduler_app/tests/device-types/tegra124-nyan-big.jinja2
index b99d33250..dcc61640b 100644
--- a/lava_scheduler_app/tests/device-types/tegra124-nyan-big.jinja2
+++ b/lava_scheduler_app/tests/device-types/tegra124-nyan-big.jinja2
@@ -1,8 +1,8 @@
-# Nyan big AKA Acer Chromebook 13 CB5-311, running u-boot
-{# device_type = "tegra124-nyan-big" #}
-{% extends 'tegra124-common.jinja2' %}
+# Nyan big AKA Acer Chromebook 13 CB5-311, running Depthcharge
+{% extends 'base-depthcharge.jinja2' %}
-{% set bootloader_prompt = bootloader_prompt|default('Nyan-big') %}
-{% set uboot_needs_usb = true %}
-
-{% set action_timeout_u_boot_interrupt = 60 %}
+{% set mkimage_fit_arch = 'arm' %}
+{% set start_message = start_message | default('Starting depthcharge on nyan_big...') %}
+{% set bootloader_prompt = bootloader_prompt | default('nyan_big:') %}
+{% set console_device = console_device | default('ttyS0') %}
+{% set extra_kernel_args = base_kernel_args | default('earlyprintk=ttyS2,115200n8 console=tty1') %}