Commit daada02d authored by Alexander Couzens's avatar Alexander Couzens
Browse files

after update to stretch and lava version 2017.7-1~bpo9+1

parent 0711202a
Loading
Loading
Loading
Loading
+14 −0
Original line number Diff line number Diff line
{% extends 'base.jinja2' %}
{% block body %}
device_type: adb-nuc

actions:
  deploy:
    methods:
      lxc:
  boot:
    connections:
      lxc:
    methods:
      lxc:
{% endblock body %}
+15 −0
Original line number Diff line number Diff line
{% extends 'base-uboot.jinja2' %}
{% set console_device = console_device|default('ttyS0') %}
{% set baud_rate = baud_rate|default(115200) %}
{% set device_type = "alpine-db" %}
{% set bootloader_prompt = bootloader_prompt|default('ALPINE_DB>') %}
{% set bootz_kernel_addr = '0x04000000' %}
{% set bootz_ramdisk_addr = '0x05000000' %}
{% set bootz_dtb_addr = '0x04f00000' %}
{% set base_ip_args = 'ip=dhcp' %}
{% set uboot_mkimage_arch = 'arm' %}
{% set uboot_tftp_commands = (
"          - setenv loadkernel 'tftpboot {KERNEL_ADDR} {KERNEL}'
          - setenv loadinitrd 'tftpboot {RAMDISK_ADDR} {RAMDISK}; setenv initrd_size ${filesize}'
          - setenv loadfdt 'tftpboot {DTB_ADDR} {DTB}; fdt addr {DTB_ADDR}; fdt resize; fdt set /soc/uart@fd883000 clock-frequency <375000000>;'") -%}
+23 −0
Original line number Diff line number Diff line
{% extends 'base-uboot.jinja2' %}

{% set console_device = console_device|default('ttyMSM0') %}
{% set baud_rate = baud_rate|default(115200) %}
{% set device_type = "apq8016-sbc" %}
{% if extra_kernel_args %}
{% set extra_kernel_args = "debug loglevel=7 " + extra_kernel_args %}
{% else %}
{% set extra_kernel_args = "debug loglevel=7" %}
{% endif %}
{% set interrupt_prompt = 'Qualcomm-DragonBoard 410C' %}
{% set bootloader_prompt = '=>' %}
{% set action_timeout_u_boot_commands = 90 %}
{% set booti_kernel_addr = '0x80080000' %}
{% set booti_ramdisk_addr = '0x82000000' %}
{% set booti_dtb_addr = '0x81e00000' %}
{% set bootm_kernel_addr = booti_kernel_addr %}
{% set bootm_ramdisk_addr = booti_ramdisk_addr %}
{% set bootm_dtb_addr = booti_dtb_addr %}
{% set uboot_initrd_high = '0xffffffffffffffff' %}
{% set uboot_fdt_high = '0xffffffffffffffff' %}
{% set uboot_needs_usb = true %}
{% set uboot_mkimage_arch = 'arm64' %}
 No newline at end of file
+22 −0
Original line number Diff line number Diff line
{% extends 'base.jinja2' %}
{% block body %}
device_type: arduino101
board_id: '{{ board_id|default('0000000000') }}'
usb_vendor_id: '8087'
usb_product_id: '0aba'

actions:
  deploy:
    methods:
      image:
        parameters:

  boot:
    connections:
      serial:
    methods:
      dfu:
        parameters:
          command:
            dfu-util
{% endblock body -%}
+13 −0
Original line number Diff line number Diff line
{% extends 'base-uboot.jinja2' %}
{% set console_device = console_device|default('ttyS0') %}
{% set baud_rate = baud_rate|default(115200) %}
{% set device_type = "armada-370-db" %}
{% set bootloader_prompt = bootloader_prompt|default('Marvell>>') %}
{% set bootm_kernel_addr = '0x02080000' %}
{% set bootm_ramdisk_addr = '0x02880000' %}
{% set bootm_dtb_addr = '0x01000000' %}
{% set base_ip_args = 'ip=dhcp' %}
{% set uboot_mkimage_arch = 'arm' %}
{% set append_dtb = true %}
{% set use_xip = true %}
{% set uboot_bootx_cmd = "bootm {KERNEL_ADDR} {RAMDISK_ADDR}" %}
Loading