Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI-loop for Akebi96 #4

Open
wants to merge 2 commits into
base: ci-loop-akebi
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci-box-lava-worker
Submodule ci-box-lava-worker updated 1 files
+13 −1 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,28 +1,15 @@
{% extends "base-uboot.jinja2" %}

{% block body %}

board_id: '{{ board_id|default('AKEBI96-0x0000000000000000') }}'

{{ super() }}
{% endblock body %}

# Platform parameters
{% set console_device = console_device|default("ttyS0") %}
{% set baud_rate = baud_rate|default(115200) %}

{% set base_high_limits = False %}
{% if extra_kernel_args %}
{% set extra_kernel_args = "rootwait coherent_pool=2M " + extra_kernel_args %}
{% set extra_kernel_args = "rootwait " + extra_kernel_args %}
{% else %}
{% set extra_kernel_args = "rootwait coherent_pool=2M" %}
{% set extra_kernel_args = "rootwait" %}
{% endif %}
{% set extra_nfsroot_args = ",vers=3" + extra_nfsroot_args|default('') %}

{% set booti_kernel_addr = "0x82000000" %}
{% set booti_ramdisk_addr = "0x84a00000" %}
{% set booti_dtb_addr = "0x84100000" %}

# Uboot custom settings
{% set bootloader_prompt = bootloader_prompt|default("=>") %}
{% set append_dtb = false %}
Expand All @@ -34,7 +21,10 @@ board_id: '{{ board_id|default('AKEBI96-0x0000000000000000') }}'
"tftpboot {DTB_ADDR} {DTB}"]
-%}

{% set uboot_mkimage_arch = "arm64" %}
{% set uboot_method_fit = false %}
{% set booti_device_tree_config = "1" %}
{% set uboot_mkimage_arch = "arm64" %}
{% set booti_kernel_addr = "0x82000000" %}
{% set booti_ramdisk_addr = "0x84a00000" %}
{% set booti_dtb_addr = "0x84100000" %}
{% set uboot_bootx_cmd = "booti {KERNEL_ADDR} {RAMDISK_ADDR} {DTB_ADDR}" %}