aboutsummaryrefslogtreecommitdiff
path: root/lava_scheduler_app/tests/device-types/highbank.jinja2
blob: 45c5d4e229299404f7abd5697f4a956a413842f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends 'base-uboot.jinja2' %}

{% set console_device = console_device|default('ttyAMA0') %}
{% set baud_rate = baud_rate|default(115200) %}
{% set device_type = "highbank" %}
{% if extra_kernel_args %}
{% set extra_kernel_args = "nosplash break " + extra_kernel_args %}
{% else %}
{% set extra_kernel_args = "nosplash break" %}
{% endif %}
{% set interrupt_prompt = 'Press <s>' %}
{% set interrupt_char = 's' %}
{% set boot_character_delay = 100 %}
{% set action_timeout_u_boot_commands = 3 %}
{% set connection_timeout_u_boot_commands = 3 %}
{% set bootloader_prompt = bootloader_prompt|default('Highbank #') %}
{% set action_timeout_u_boot_commands = 90 %}
{% set bootm_kernel_addr = '0x00800000' %}
{% set bootm_ramdisk_addr = '0x02000000' %}
{% set bootm_dtb_addr = '0x00001000' %}
{% set bootz_kernel_addr = bootm_kernel_addr %}
{% set bootz_ramdisk_addr = bootm_ramdisk_addr %}
{% set bootz_dtb_addr = bootm_dtb_addr %}
{% set uboot_mkimage_arch = 'arm' %}
{% set uboot_initrd_high = '0xffffffffffffffff' %}
{% set uboot_fdt_high = '0xffffffffffffffff' %}