Makefile (4b4193256c8d3bc3a5397b5cd9494c2ad386317d) Makefile (c425c546c0f149560c778595c1a20a88a444711f)
1#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6
1#
2# This file is subject to the terms and conditions of the GNU General Public
3# License. See the file "COPYING" in the main directory of this archive
4# for more details.
5#
6
7ifeq ($(BIG_ENDIAN),1)
8OBJCOPY_ARGS := -O elf32-xtensa-be
9else
10OBJCOPY_ARGS := -O elf32-xtensa-le
11endif
7OBJCOPY_ARGS := -O $(if $(CONFIG_CPU_BIG_ENDIAN),elf32-xtensa-be,elf32-xtensa-le)
12
13LD_ARGS = -T $(srctree)/$(obj)/boot.ld
14
15boot-y := bootstrap.o
16targets += $(boot-y)
17
18OBJS := $(addprefix $(obj)/,$(boot-y))
19LIBS := arch/xtensa/boot/lib/lib.a arch/xtensa/lib/lib.a

--- 17 unchanged lines hidden ---
8
9LD_ARGS = -T $(srctree)/$(obj)/boot.ld
10
11boot-y := bootstrap.o
12targets += $(boot-y)
13
14OBJS := $(addprefix $(obj)/,$(boot-y))
15LIBS := arch/xtensa/boot/lib/lib.a arch/xtensa/lib/lib.a

--- 17 unchanged lines hidden ---