diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2019-07-22 11:18:49 +0200 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2019-07-22 11:23:52 +0200 |
commit | bbfbc53ef4d1ae1059940c0d397b8d8f7c1f0013 (patch) | |
tree | 33e98bfd31c43af6a6a2ce78460356d8fc67c2c4 | |
parent | 4ec07ea80566b957d5c693a33742282841c541d5 (diff) |
apalis-tk1: machines: deploy a distro boot script
This depends on and deploys the distro boot script provided
by u-boot-distro-boot.
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r-- | conf/machine/apalis-tk1-mainline.conf | 4 | ||||
-rw-r--r-- | conf/machine/apalis-tk1.conf | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/conf/machine/apalis-tk1-mainline.conf b/conf/machine/apalis-tk1-mainline.conf index 460cba8..92f2192 100644 --- a/conf/machine/apalis-tk1-mainline.conf +++ b/conf/machine/apalis-tk1-mainline.conf @@ -10,6 +10,10 @@ require conf/machine/include/soc-family.inc SOC_FAMILY = "tegra124m" +EXTRA_IMAGEDEPENDS += "u-boot-distro-boot" +IMAGE_BOOT_FILES += "${MACHINE_BOOT_FILES}" +MACHINE_BOOT_FILES = "boot.scr" + PREFERRED_PROVIDER_virtual/kernel = "linux-toradex-mainline" KERNEL_IMAGETYPE = "zImage" diff --git a/conf/machine/apalis-tk1.conf b/conf/machine/apalis-tk1.conf index d6322b8..bb5124a 100644 --- a/conf/machine/apalis-tk1.conf +++ b/conf/machine/apalis-tk1.conf @@ -10,6 +10,10 @@ require conf/machine/include/soc-family.inc SOC_FAMILY = "tegra124" +EXTRA_IMAGEDEPENDS += "u-boot-distro-boot" +IMAGE_BOOT_FILES += "${MACHINE_BOOT_FILES}" +MACHINE_BOOT_FILES = "boot.scr" + PREFERRED_PROVIDER_virtual/kernel = "linux-toradex" KERNEL_IMAGETYPE = "zImage" |