⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 linux内核源码
💻
字号:
## linux/arch/arm/boot/compressed/Makefile## create a compressed vmlinuz image from the original vmlinux#HEAD	= head.oOBJS	= misc.oFONTC	= $(srctree)/drivers/video/console/font_acorn_8x8.c## Architecture dependencies#ifeq ($(CONFIG_ARCH_ACORN),y)OBJS		+= ll_char_wr.o font.oendififeq ($(CONFIG_ARCH_SHARK),y)OBJS		+= head-shark.o ofw-shark.oendififeq ($(CONFIG_ARCH_L7200),y)OBJS		+= head-l7200.oendififeq ($(CONFIG_ARCH_CLPS7500),y)HEAD		= head-clps7500.oendififeq ($(CONFIG_ARCH_P720T),y)# Borrow this code from SA1100OBJS		+= head-sa1100.oendififeq ($(CONFIG_ARCH_SA1100),y)OBJS		+= head-sa1100.oendififeq ($(CONFIG_CPU_XSCALE),y)OBJS		+= head-xscale.oendififeq ($(CONFIG_PXA_SHARPSL),y)OBJS		+= head-sharpsl.oendififeq ($(CONFIG_ARCH_AT91RM9200),y)OBJS		+= head-at91rm9200.oendififeq ($(CONFIG_CPU_BIG_ENDIAN),y)ifeq ($(CONFIG_CPU_CP15),y)OBJS		+= big-endian.oelse# The endian should be set by h/w design.endifendif## 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 SHARKifeq ($(CONFIG_ZBOOT_ROM),y)ZTEXTADDR	:= $(CONFIG_ZBOOT_ROM_TEXT)ZBSSADDR	:= $(CONFIG_ZBOOT_ROM_BSS)elseZTEXTADDR	:= 0ZBSSADDR	:= ALIGN(4)endifSEDFLAGS	= s/TEXT_START/$(ZTEXTADDR)/;s/BSS_START/$(ZBSSADDR)/targets       := vmlinux vmlinux.lds piggy.gz piggy.o font.o font.c \		 head.o misc.o $(OBJS)EXTRA_CFLAGS  := -fpic -fno-builtinEXTRA_AFLAGS  :=# Supply ZRELADDR, INITRD_PHYS and PARAMS_PHYS to the decompressor via# linker symbols.  We only define initrd_phys and params_phys if the# machine class defined the corresponding makefile variable.LDFLAGS_vmlinux := --defsym zreladdr=$(ZRELADDR)ifneq ($(INITRD_PHYS),)LDFLAGS_vmlinux += --defsym initrd_phys=$(INITRD_PHYS)endififneq ($(PARAMS_PHYS),)LDFLAGS_vmlinux += --defsym params_phys=$(PARAMS_PHYS)endifLDFLAGS_vmlinux += -p --no-undefined -X \	$(shell $(CC) $(KBUILD_CFLAGS) --print-libgcc-file-name) -T# Don't allow any static data in misc.o, which# would otherwise mess up our GOT tableCFLAGS_misc.o := -Dstatic=$(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.o \	 	$(addprefix $(obj)/, $(OBJS)) FORCE	$(call if_changed,ld)	@:$(obj)/piggy.gz: $(obj)/../Image FORCE	$(call if_changed,gzip)$(obj)/piggy.o:  $(obj)/piggy.gz FORCECFLAGS_font.o := -Dstatic=$(obj)/font.c: $(FONTC)	$(call cmd,shipped)$(obj)/vmlinux.lds: $(obj)/vmlinux.lds.in arch/arm/boot/Makefile .config	@sed "$(SEDFLAGS)" < $< > $@$(obj)/misc.o: $(obj)/misc.c include/asm/arch/uncompress.h lib/inflate.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -