diff options
author | Denys Dmytriyenko <denys@ti.com> | 2018-10-18 03:58:38 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2018-10-17 22:48:49 +0000 |
commit | de7203d403946ea1c0a01ed90d682c169cd210ad (patch) | |
tree | a3e1e7713fd117a6f88c0857107faeda9d349ddd /conf | |
parent | cc91e6bfaac42d63938b67a3efa4526dd9d8a063 (diff) | |
download | meta-ti-de7203d403946ea1c0a01ed90d682c169cd210ad.tar.gz |
conf/machine: define UBOOT_SUFFIX and SPL_BINARY in machine configs
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/beaglebone.conf | 6 | ||||
-rw-r--r-- | conf/machine/include/k3.inc | 7 | ||||
-rw-r--r-- | conf/machine/include/keystone.inc | 3 | ||||
-rw-r--r-- | conf/machine/include/omap-a15.inc | 3 | ||||
-rw-r--r-- | conf/machine/include/ti33x.inc | 3 | ||||
-rw-r--r-- | conf/machine/include/ti43x.inc | 3 | ||||
-rw-r--r-- | conf/machine/k2e-hs-evm.conf | 1 | ||||
-rw-r--r-- | conf/machine/k2g-hs-evm.conf | 1 | ||||
-rw-r--r-- | conf/machine/k2hk-hs-evm.conf | 1 | ||||
-rw-r--r-- | conf/machine/k2l-hs-evm.conf | 1 | ||||
-rw-r--r-- | conf/machine/omapl138-lcdk.conf | 1 |
11 files changed, 21 insertions, 9 deletions
diff --git a/conf/machine/beaglebone.conf b/conf/machine/beaglebone.conf index 5e7348a4..450a1893 100644 --- a/conf/machine/beaglebone.conf +++ b/conf/machine/beaglebone.conf | |||
@@ -13,12 +13,6 @@ MACHINE_GUI_CLASS = "bigscreen" | |||
13 | 13 | ||
14 | SERIAL_CONSOLES = "115200;ttyS0" | 14 | SERIAL_CONSOLES = "115200;ttyS0" |
15 | 15 | ||
16 | # fall back on generic am335x_evm_config for now | ||
17 | #UBOOT_MACHINE = "am335x_boneblack_config" | ||
18 | |||
19 | SPL_BINARY = "MLO" | ||
20 | UBOOT_SUFFIX = "img" | ||
21 | |||
22 | WKS_FILE = "sdimage-bootpart.wks" | 16 | WKS_FILE = "sdimage-bootpart.wks" |
23 | 17 | ||
24 | do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" | 18 | do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" |
diff --git a/conf/machine/include/k3.inc b/conf/machine/include/k3.inc index 1c540f3d..22fdeb9c 100644 --- a/conf/machine/include/k3.inc +++ b/conf/machine/include/k3.inc | |||
@@ -17,9 +17,10 @@ UBOOT_ARCH = "arm" | |||
17 | UBOOT_ENTRYPOINT = "0x80008000" | 17 | UBOOT_ENTRYPOINT = "0x80008000" |
18 | UBOOT_LOADADDRESS = "0x80008000" | 18 | UBOOT_LOADADDRESS = "0x80008000" |
19 | 19 | ||
20 | EXTRA_IMAGEDEPENDS += " \ | 20 | SPL_BINARY = "tispl.bin" |
21 | virtual/bootloader \ | 21 | UBOOT_SUFFIX = "img" |
22 | " | 22 | |
23 | EXTRA_IMAGEDEPENDS += "virtual/bootloader" | ||
23 | 24 | ||
24 | MACHINE_GUI_CLASS = "smallscreen" | 25 | MACHINE_GUI_CLASS = "smallscreen" |
25 | 26 | ||
diff --git a/conf/machine/include/keystone.inc b/conf/machine/include/keystone.inc index 3e96e927..ef33975f 100644 --- a/conf/machine/include/keystone.inc +++ b/conf/machine/include/keystone.inc | |||
@@ -16,6 +16,9 @@ KERNEL_IMAGETYPE = "zImage" | |||
16 | UBOOT_ENTRYPOINT = "0x80008000" | 16 | UBOOT_ENTRYPOINT = "0x80008000" |
17 | UBOOT_LOADADDRESS = "0x80008000" | 17 | UBOOT_LOADADDRESS = "0x80008000" |
18 | 18 | ||
19 | SPL_BINARY = "MLO" | ||
20 | UBOOT_SUFFIX = "bin" | ||
21 | |||
19 | # Use the expected value of the ubifs filesystem's volume name in the kernel | 22 | # Use the expected value of the ubifs filesystem's volume name in the kernel |
20 | # and u-boot. | 23 | # and u-boot. |
21 | UBI_VOLNAME = "rootfs" | 24 | UBI_VOLNAME = "rootfs" |
diff --git a/conf/machine/include/omap-a15.inc b/conf/machine/include/omap-a15.inc index 6dcff82b..233b45f4 100644 --- a/conf/machine/include/omap-a15.inc +++ b/conf/machine/include/omap-a15.inc | |||
@@ -19,6 +19,9 @@ UBOOT_ARCH = "arm" | |||
19 | UBOOT_ENTRYPOINT = "0x80008000" | 19 | UBOOT_ENTRYPOINT = "0x80008000" |
20 | UBOOT_LOADADDRESS = "0x80008000" | 20 | UBOOT_LOADADDRESS = "0x80008000" |
21 | 21 | ||
22 | SPL_BINARY = "MLO" | ||
23 | UBOOT_SUFFIX = "img" | ||
24 | |||
22 | EXTRA_IMAGEDEPENDS += "virtual/bootloader" | 25 | EXTRA_IMAGEDEPENDS += "virtual/bootloader" |
23 | 26 | ||
24 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" | 27 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg" |
diff --git a/conf/machine/include/ti33x.inc b/conf/machine/include/ti33x.inc index 05527b82..487ceb4f 100644 --- a/conf/machine/include/ti33x.inc +++ b/conf/machine/include/ti33x.inc | |||
@@ -40,6 +40,9 @@ UBOOT_MACHINE = "am335x_evm_config" | |||
40 | UBOOT_ENTRYPOINT = "0x80008000" | 40 | UBOOT_ENTRYPOINT = "0x80008000" |
41 | UBOOT_LOADADDRESS = "0x80008000" | 41 | UBOOT_LOADADDRESS = "0x80008000" |
42 | 42 | ||
43 | SPL_BINARY = "MLO" | ||
44 | UBOOT_SUFFIX = "img" | ||
45 | |||
43 | # Use the expected value of the ubifs filesystem's volume name in the kernel | 46 | # Use the expected value of the ubifs filesystem's volume name in the kernel |
44 | # and u-boot. | 47 | # and u-boot. |
45 | UBI_VOLNAME = "rootfs" | 48 | UBI_VOLNAME = "rootfs" |
diff --git a/conf/machine/include/ti43x.inc b/conf/machine/include/ti43x.inc index ddc270ae..9adf1401 100644 --- a/conf/machine/include/ti43x.inc +++ b/conf/machine/include/ti43x.inc | |||
@@ -38,6 +38,9 @@ UBOOT_MACHINE = "am43xx_evm_config" | |||
38 | UBOOT_ENTRYPOINT = "0x80008000" | 38 | UBOOT_ENTRYPOINT = "0x80008000" |
39 | UBOOT_LOADADDRESS = "0x80008000" | 39 | UBOOT_LOADADDRESS = "0x80008000" |
40 | 40 | ||
41 | SPL_BINARY = "MLO" | ||
42 | UBOOT_SUFFIX = "img" | ||
43 | |||
41 | # Use the expected value of the ubifs filesystem's volume name in the kernel | 44 | # Use the expected value of the ubifs filesystem's volume name in the kernel |
42 | # and u-boot. | 45 | # and u-boot. |
43 | UBI_VOLNAME = "rootfs" | 46 | UBI_VOLNAME = "rootfs" |
diff --git a/conf/machine/k2e-hs-evm.conf b/conf/machine/k2e-hs-evm.conf index 98d595d4..1fc03d6c 100644 --- a/conf/machine/k2e-hs-evm.conf +++ b/conf/machine/k2e-hs-evm.conf | |||
@@ -5,6 +5,7 @@ | |||
5 | require conf/machine/k2e-evm.conf | 5 | require conf/machine/k2e-evm.conf |
6 | 6 | ||
7 | UBOOT_MACHINE = "k2e_hs_evm_config" | 7 | UBOOT_MACHINE = "k2e_hs_evm_config" |
8 | SPL_BINARY = "" | ||
8 | 9 | ||
9 | UBOOT_ENTRYPOINT = "0x82000000" | 10 | UBOOT_ENTRYPOINT = "0x82000000" |
10 | UBOOT_LOADADDRESS = "0x82000000" | 11 | UBOOT_LOADADDRESS = "0x82000000" |
diff --git a/conf/machine/k2g-hs-evm.conf b/conf/machine/k2g-hs-evm.conf index 852e93b3..0620b1f5 100644 --- a/conf/machine/k2g-hs-evm.conf +++ b/conf/machine/k2g-hs-evm.conf | |||
@@ -5,6 +5,7 @@ | |||
5 | require conf/machine/k2g-evm.conf | 5 | require conf/machine/k2g-evm.conf |
6 | 6 | ||
7 | UBOOT_MACHINE = "k2g_hs_evm_config" | 7 | UBOOT_MACHINE = "k2g_hs_evm_config" |
8 | SPL_BINARY = "" | ||
8 | 9 | ||
9 | UBOOT_ENTRYPOINT = "0x82000000" | 10 | UBOOT_ENTRYPOINT = "0x82000000" |
10 | UBOOT_LOADADDRESS = "0x82000000" | 11 | UBOOT_LOADADDRESS = "0x82000000" |
diff --git a/conf/machine/k2hk-hs-evm.conf b/conf/machine/k2hk-hs-evm.conf index a5861e29..5c93ca48 100644 --- a/conf/machine/k2hk-hs-evm.conf +++ b/conf/machine/k2hk-hs-evm.conf | |||
@@ -5,6 +5,7 @@ | |||
5 | require conf/machine/k2hk-evm.conf | 5 | require conf/machine/k2hk-evm.conf |
6 | 6 | ||
7 | UBOOT_MACHINE = "k2hk_hs_evm_config" | 7 | UBOOT_MACHINE = "k2hk_hs_evm_config" |
8 | SPL_BINARY = "" | ||
8 | 9 | ||
9 | UBOOT_ENTRYPOINT = "0x82000000" | 10 | UBOOT_ENTRYPOINT = "0x82000000" |
10 | UBOOT_LOADADDRESS = "0x82000000" | 11 | UBOOT_LOADADDRESS = "0x82000000" |
diff --git a/conf/machine/k2l-hs-evm.conf b/conf/machine/k2l-hs-evm.conf index fe58b1d2..097f94d0 100644 --- a/conf/machine/k2l-hs-evm.conf +++ b/conf/machine/k2l-hs-evm.conf | |||
@@ -5,6 +5,7 @@ | |||
5 | require conf/machine/k2l-evm.conf | 5 | require conf/machine/k2l-evm.conf |
6 | 6 | ||
7 | UBOOT_MACHINE = "k2l_hs_evm_config" | 7 | UBOOT_MACHINE = "k2l_hs_evm_config" |
8 | SPL_BINARY = "" | ||
8 | 9 | ||
9 | UBOOT_ENTRYPOINT = "0x82000000" | 10 | UBOOT_ENTRYPOINT = "0x82000000" |
10 | UBOOT_LOADADDRESS = "0x82000000" | 11 | UBOOT_LOADADDRESS = "0x82000000" |
diff --git a/conf/machine/omapl138-lcdk.conf b/conf/machine/omapl138-lcdk.conf index c2ffb40a..a6d6bf92 100644 --- a/conf/machine/omapl138-lcdk.conf +++ b/conf/machine/omapl138-lcdk.conf | |||
@@ -7,6 +7,7 @@ require conf/machine/include/omapl138.inc | |||
7 | 7 | ||
8 | UBOOT_MACHINE = "omapl138_lcdk_config" | 8 | UBOOT_MACHINE = "omapl138_lcdk_config" |
9 | UBOOT_SUFFIX = "ais" | 9 | UBOOT_SUFFIX = "ais" |
10 | SPL_BINARY = "" | ||
10 | 11 | ||
11 | UBOOT_ENTRYPOINT = "0xc0008000" | 12 | UBOOT_ENTRYPOINT = "0xc0008000" |
12 | UBOOT_LOADADDRESS = "0xc0008000" | 13 | UBOOT_LOADADDRESS = "0xc0008000" |