Skip to content
Snippets Groups Projects
Commit c21a3edd authored by Guillaume Tucker's avatar Guillaume Tucker
Browse files

device-types: add minnowboard-turbot-E3826


Add initial device type for the minnowboard-turbot-E3826 board using
GRUB.  Tested with ramdisk and nfsroot, as well as with secondary
deployment on SD card with custom boot commands.

Change-Id: Ideb12700051c7063f0148fbcb4cd1ff830432db8
Signed-off-by: default avatarGuillaume Tucker <guillaume.tucker@collabora.com>
parent b726eeb0
No related branches found
No related tags found
No related merge requests found
{% extends 'base.jinja2' %}
{% set grub_autoboot_prompt = 'SecStartup' %}
{% set boot_character_delay = 1 %}
{% set boot_message = 'Booting in blind mode' %}
{% set console_device = console_device | default('ttyS0') %}
{% set baud_rate = baud_rate | default(115200) %}
{% block body %}
device_type: minnowboard-turbot-E3826
actions:
deploy:
connections:
serial:
methods:
tftp:
boot:
connections:
serial:
methods:
grub:
parameters:
bootloader_prompt: {{ bootloader_prompt|default('grub>') }}
ramdisk:
commands:
- set net_default_server={SERVER_IP}
- 'linux (tftp)/{KERNEL} console=tty0 console={{ console_device }},{{ baud_rate }} root=/dev/ram0 ip=:::::eth0:dhcp'
- initrd (tftp)/{RAMDISK}
- boot
nfs:
commands:
- set net_default_server={SERVER_IP}
- 'linux (tftp)/{KERNEL} console=tty0 console={{ console_device }},{{ baud_rate }} root=/dev/nfs rw {{ base_nfsroot_args }} {{ base_ip_args }}'
- boot
{% endblock body %}
{% block timeouts %}
timeouts:
actions:
grub-main:
seconds: 5400
bootloader-action:
seconds: 5400
bootloader-interrupt:
seconds: 300
bootloader-commands:
seconds: 600
auto-login:
seconds: 600
auto-login-action:
seconds: 600
installer-wait:
seconds: 5400
pdu-reboot:
seconds: 3000
connections:
pdu-reboot:
seconds: 3000
grub-main:
seconds: 5400
bootloader-action:
seconds: 5400
installer-wait:
seconds: 5400
bootloader-retry:
seconds: 3000
bootloader-interrupt:
seconds: 300
bootloader-commands:
seconds: 600
{% endblock timeouts %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment