2005-04-16 15:20:36 -07:00
#
# linux/arch/arm/boot/compressed/Makefile
#
# create a compressed vmlinuz image from the original vmlinux
#
2011-01-11 04:01:08 +01:00
OBJS =
2010-07-05 15:56:50 +02:00
AFLAGS_head.o += -DTEXT_OFFSET= $( TEXT_OFFSET)
2005-04-16 15:20:36 -07:00
HEAD = head.o
2011-01-11 04:01:08 +01:00
OBJS += misc.o decompress.o
2013-03-14 08:48:06 +01:00
i f e q ( $( CONFIG_DEBUG_UNCOMPRESS ) , y )
OBJS += debug.o
e n d i f
2013-06-09 11:46:43 +02:00
FONTC = $( srctree) /lib/fonts/font_acorn_8x8.c
2005-04-16 15:20:36 -07:00
2011-09-13 21:42:55 -04:00
# string library code (-Os is enforced to keep it much smaller)
OBJS += string.o
CFLAGS_string.o := -Os
2012-02-10 18:07:07 -08:00
i f e q ( $( CONFIG_ARM_VIRT_EXT ) , y )
OBJS += hyp-stub.o
e n d i f
2014-09-18 20:39:15 +01:00
GCOV_PROFILE := n
2005-04-16 15:20:36 -07:00
#
# Architecture dependencies
#
i f e q ( $( CONFIG_ARCH_ACORN ) , y )
2007-06-03 18:54:42 +01:00
OBJS += ll_char_wr.o font.o
2005-04-16 15:20:36 -07:00
e n d i f
i f e q ( $( CONFIG_ARCH_SA 1100) , y )
OBJS += head-sa1100.o
e n d i f
i f e q ( $( CONFIG_CPU_XSCALE ) , y )
OBJS += head-xscale.o
e n d i f
2010-06-23 09:27:32 +08:00
i f e q ( $( CONFIG_PXA_SHARPSL_DETECT_MACH_ID ) , y )
2005-04-16 15:20:36 -07:00
OBJS += head-sharpsl.o
e n d i f
2009-05-30 14:00:18 +01:00
i f e q ( $( CONFIG_CPU_ENDIAN_BE 32) , y )
2006-09-26 17:36:37 +09:00
i f e q ( $( CONFIG_CPU_CP 15) , y )
2005-04-16 15:20:36 -07:00
OBJS += big-endian.o
2006-09-26 17:36:37 +09:00
e l s e
# The endian should be set by h/w design.
e n d i f
2005-04-16 15:20:36 -07:00
e n d i f
#
# We now have a PIC decompressor implementation. Decompressors running
# from RAM should not define ZTEXTADDR. Decompressors running directly
# from ROM or Flash must define ZTEXTADDR (preferably via the config)
# FIXME: Previous assignment to ztextaddr-y is lost here. See SHARK
i f e q ( $( CONFIG_ZBOOT_ROM ) , y )
ZTEXTADDR := $( CONFIG_ZBOOT_ROM_TEXT)
ZBSSADDR := $( CONFIG_ZBOOT_ROM_BSS)
e l s e
ZTEXTADDR := 0
2011-04-21 21:45:08 -04:00
ZBSSADDR := ALIGN( 8)
2005-04-16 15:20:36 -07:00
e n d i f
2014-06-17 15:00:54 +01:00
CPPFLAGS_vmlinux.lds := -DTEXT_START= " $( ZTEXTADDR) " -DBSS_START= " $( ZBSSADDR) "
2005-04-16 15:20:36 -07:00
2010-01-08 14:42:43 -08:00
suffix_$(CONFIG_KERNEL_GZIP) = gzip
suffix_$(CONFIG_KERNEL_LZO) = lzo
2010-04-03 11:40:28 +01:00
suffix_$(CONFIG_KERNEL_LZMA) = lzma
2012-01-26 13:08:57 +01:00
suffix_$(CONFIG_KERNEL_XZ) = xzkern
2013-07-08 16:01:48 -07:00
suffix_$(CONFIG_KERNEL_LZ4) = lz4
2010-01-08 14:42:43 -08:00
2011-09-13 22:37:07 -04:00
# Borrowed libfdt files for the ATAG compatibility mode
libfdt := fdt_rw.c fdt_ro.c fdt_wip.c fdt.c
libfdt_hdrs := fdt.h libfdt.h libfdt_internal.h
libfdt_objs := $( addsuffix .o, $( basename $( libfdt) ) )
$(addprefix $(obj)/,$(libfdt) $(libfdt_hdrs)) : $( obj ) /%: $( srctree ) /scripts /dtc /libfdt /%
$( call cmd,shipped)
$(addprefix $(obj)/,$(libfdt_objs) atags_to_fdt.o) : \
$( addprefix $( obj) /,$( libfdt_hdrs) )
i f e q ( $( CONFIG_ARM_ATAG_DTB_COMPAT ) , y )
OBJS += $( libfdt_objs) atags_to_fdt.o
e n d i f
2010-01-08 14:42:43 -08:00
targets := vmlinux vmlinux.lds \
piggy.$( suffix_y) piggy.$( suffix_y) .o \
2013-11-06 05:15:24 +01:00
lib1funcs.o lib1funcs.S ashldi3.o ashldi3.S bswapsdi2.o \
bswapsdi2.S font.o font.c head.o misc.o $( OBJS)
2008-05-31 14:23:50 +05:30
2010-07-28 05:46:21 +01:00
# Make sure files are removed during clean
2013-07-08 16:01:48 -07:00
extra-y += piggy.gzip piggy.lzo piggy.lzma piggy.xzkern piggy.lz4 \
2013-11-06 05:15:24 +01:00
lib1funcs.S ashldi3.S bswapsdi2.S $( libfdt) $( libfdt_hdrs) \
2014-06-17 15:00:54 +01:00
hyp-stub.S
2010-07-28 05:46:21 +01:00
2015-05-26 15:39:36 +01:00
KBUILD_CFLAGS += -DDISABLE_BRANCH_PROFILING
2008-10-06 19:06:12 -04:00
i f e q ( $( CONFIG_FUNCTION_TRACER ) , y )
2008-05-31 14:23:50 +05:30
ORIG_CFLAGS := $( KBUILD_CFLAGS)
KBUILD_CFLAGS = $( subst -pg, , $( ORIG_CFLAGS) )
e n d i f
2013-03-04 15:17:36 +01:00
ccflags-y := -fpic -mno-single-pic-base -fno-builtin -I$( obj)
2013-05-31 22:50:47 +01:00
asflags-y := -DZIMAGE
2005-04-16 15:20:36 -07:00
2011-06-12 01:07:33 -04:00
# Supply kernel BSS size to the decompressor via a linker symbol.
2011-12-01 22:45:47 +01:00
KBSS_SZ = $( shell $( CROSS_COMPILE) size $( obj) /../../../../vmlinux | \
awk 'END{print $$3}' )
2011-06-12 01:07:33 -04:00
LDFLAGS_vmlinux = --defsym _kernel_bss_size = $( KBSS_SZ)
2010-09-09 22:39:41 +01:00
# Supply ZRELADDR to the decompressor via a linker symbol.
i f n e q ( $( CONFIG_AUTO_ZRELADDR ) , y )
2011-02-21 04:57:38 +01:00
LDFLAGS_vmlinux += --defsym zreladdr = $( ZRELADDR)
2010-09-09 22:39:41 +01:00
e n d i f
2009-05-30 14:00:18 +01:00
i f e q ( $( CONFIG_CPU_ENDIAN_BE 8) , y )
LDFLAGS_vmlinux += --be8
e n d i f
2010-01-08 14:42:43 -08:00
# ?
LDFLAGS_vmlinux += -p
# Report unresolved symbol references
LDFLAGS_vmlinux += --no-undefined
# Delete all temporary local symbols
LDFLAGS_vmlinux += -X
# Next argument is a linker script
LDFLAGS_vmlinux += -T
# For __aeabi_uidivmod
lib1funcs = $( obj) /lib1funcs.o
2011-09-14 00:16:21 -04:00
$(obj)/lib1funcs.S : $( srctree ) /arch /$( SRCARCH ) /lib /lib 1funcs .S
2010-01-08 14:42:43 -08:00
$( call cmd,shipped)
2005-04-16 15:20:36 -07:00
2012-01-26 13:08:57 +01:00
# For __aeabi_llsl
ashldi3 = $( obj) /ashldi3.o
$(obj)/ashldi3.S : $( srctree ) /arch /$( SRCARCH ) /lib /ashldi 3.S
$( call cmd,shipped)
2013-11-06 05:15:24 +01:00
# For __bswapsi2, __bswapdi2
bswapsdi2 = $( obj) /bswapsdi2.o
$(obj)/bswapsdi2.S : $( srctree ) /arch /$( SRCARCH ) /lib /bswapsdi 2.S
$( call cmd,shipped)
2011-04-27 14:54:39 -04:00
# We need to prevent any GOTOFF relocs being used with references
# to symbols in the .bss section since we cannot relocate them
# independently from the rest at run time. This can be achieved by
# ensuring that no private .bss symbols exist, as global symbols
# always have a GOT entry which is what we need.
# The .data section is already discarded by the linker script so no need
# to bother about it here.
check_for_bad_syms = \
bad_syms = $$ ( $( CROSS_COMPILE) nm $@ | sed -n 's/^.\{8\} [bc] \(.*\)/\1/p' ) && \
[ - z "$$bad_syms" ] | | \
( echo "following symbols must have non local/private scope:" >& 2; \
echo " $$ bad_syms " >& 2; rm -f $@ ; false )
2011-08-17 14:22:11 +01:00
check_for_multiple_zreladdr = \
2011-10-04 14:33:34 +01:00
i f [ $( words $ ( ZRELADDR ) ) - g t 1 - a "$(CONFIG_AUTO_ZRELADDR)" = "" ] ; t h e n \
2011-08-17 14:22:11 +01:00
echo 'multiple zreladdrs: $(ZRELADDR)' ; \
echo 'This needs CONFIG_AUTO_ZRELADDR to be set' ; \
false; \
f i
2015-09-23 20:17:54 -07:00
efi-obj-$(CONFIG_EFI_STUB) := $( objtree) /drivers/firmware/efi/libstub/lib.a
2010-01-08 14:42:43 -08:00
$(obj)/vmlinux : $( obj ) /vmlinux .lds $( obj ) /$( HEAD ) $( obj ) /piggy .$( suffix_y ) .o \
2013-11-06 05:15:24 +01:00
$( addprefix $( obj) /, $( OBJS) ) $( lib1funcs) $( ashldi3) \
2015-09-23 20:17:54 -07:00
$( bswapsdi2) $( efi-obj-y) FORCE
2011-08-17 14:22:11 +01:00
@$( check_for_multiple_zreladdr)
2005-04-16 15:20:36 -07:00
$( call if_changed,ld)
2011-04-27 14:54:39 -04:00
@$( check_for_bad_syms)
2005-04-16 15:20:36 -07:00
2010-01-08 14:42:43 -08:00
$(obj)/piggy.$(suffix_y) : $( obj ) /../Image FORCE
$( call if_changed,$( suffix_y) )
2005-04-16 15:20:36 -07:00
2010-01-08 14:42:43 -08:00
$(obj)/piggy.$(suffix_y).o : $( obj ) /piggy .$( suffix_y ) FORCE
2005-04-16 15:20:36 -07:00
2007-06-03 18:54:42 +01:00
CFLAGS_font.o := -Dstatic=
$(obj)/font.c : $( FONTC )
$( call cmd,shipped)
2005-04-16 15:20:36 -07:00
2012-02-10 18:07:07 -08:00
$(obj)/hyp-stub.S : $( srctree ) /arch /$( SRCARCH ) /kernel /hyp -stub .S
$( call cmd,shipped)