c220581c78
Buildroot toolchain creates big endian binaries instead of little endian ones for microblaze architecture. The reason is wrong BR2_ARCH string. KERNEL_ARCH must contain microblaze in both cases. Signed-off-by: Jan Drazil <xdrazi00@stud.fit.vutbr.cz> Signed-off-by: Jan Viktorin <xvikto03@stud.fit.vutbr.cz> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
12 lines
279 B
Plaintext
12 lines
279 B
Plaintext
config BR2_ARCH
|
|
default "microblazeel" if BR2_microblazeel
|
|
default "microblaze" if BR2_microblazebe
|
|
|
|
config BR2_ENDIAN
|
|
default "LITTLE" if BR2_microblazeel
|
|
default "BIG" if BR2_microblazebe
|
|
|
|
config BR2_microblaze
|
|
bool
|
|
default y if BR2_microblazeel || BR2_microblazebe
|