Makefile 2.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
#
# arch/sh/boot/Makefile
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.
#
# Copyright (C) 1999 Stuart Menefy
#

11 12 13 14 15 16 17 18 19 20
MKIMAGE := $(srctree)/scripts/mkuboot.sh

#
# Assign safe dummy values if these variables are not defined,
# in order to suppress error message.
#
CONFIG_PAGE_OFFSET	?= 0x80000000
CONFIG_MEMORY_START	?= 0x0c000000
CONFIG_BOOT_LINK_OFFSET	?= 0x00800000
CONFIG_ZERO_PAGE_OFFSET	?= 0x00001000
21
CONFIG_ENTRY_OFFSET	?= 0x00001000
22 23

targets := zImage vmlinux.srec uImage uImage.srec
L
Linus Torvalds 已提交
24 25 26 27
subdir- := compressed

$(obj)/zImage: $(obj)/compressed/vmlinux FORCE
	$(call if_changed,objcopy)
28
	@echo '  Kernel: $@ is ready'
L
Linus Torvalds 已提交
29 30 31 32

$(obj)/compressed/vmlinux: FORCE
	$(Q)$(MAKE) $(build)=$(obj)/compressed $@

33 34 35 36 37 38 39 40 41 42
KERNEL_MEMORY := 0x00000000
ifeq ($(CONFIG_PMB_FIXED),y)
KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \
		     $$[$(CONFIG_MEMORY_START) & 0x1fffffff]')
endif
ifeq ($(CONFIG_29BIT),y)
KERNEL_MEMORY := $(shell /bin/bash -c 'printf "0x%08x" \
		     $$[$(CONFIG_MEMORY_START)]')
endif

43 44 45
export CONFIG_PAGE_OFFSET CONFIG_MEMORY_START CONFIG_BOOT_LINK_OFFSET \
       CONFIG_ZERO_PAGE_OFFSET CONFIG_ENTRY_OFFSET KERNEL_MEMORY

P
Paul Mundt 已提交
46
KERNEL_LOAD	:= $(shell /bin/bash -c 'printf "0x%08x" \
47
		     $$[$(CONFIG_PAGE_OFFSET)  + \
48
			$(KERNEL_MEMORY) + \
49 50
			$(CONFIG_ZERO_PAGE_OFFSET)]')

P
Paul Mundt 已提交
51
KERNEL_ENTRY	:= $(shell /bin/bash -c 'printf "0x%08x" \
52
		     $$[$(CONFIG_PAGE_OFFSET)  + \
53
			$(KERNEL_MEMORY) + \
Y
Yoshihiro Shimoda 已提交
54
			$(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]')
55 56 57

quiet_cmd_uimage = UIMAGE  $@
      cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \
58
		   -C gzip -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \
59 60
		   -n 'Linux-$(KERNELRELEASE)' -d $< $@

61
$(obj)/uImage: $(obj)/vmlinux.bin.gz FORCE
62 63 64
	$(call if_changed,uimage)
	@echo '  Image $@ is ready'

65 66 67 68 69 70
$(obj)/vmlinux.bin: vmlinux FORCE
	$(call if_changed,objcopy)

$(obj)/vmlinux.bin.gz: $(obj)/vmlinux.bin FORCE
	$(call if_changed,gzip)

71 72 73 74 75 76 77 78
OBJCOPYFLAGS_vmlinux.srec := -I binary -O srec
$(obj)/vmlinux.srec: $(obj)/compressed/vmlinux
	$(call if_changed,objcopy)

OBJCOPYFLAGS_uImage.srec := -I binary -O srec
$(obj)/uImage.srec: $(obj)/uImage
	$(call if_changed,objcopy)

79 80
clean-files	+= uImage uImage.srec vmlinux.srec \
		   vmlinux.bin vmlinux.bin.gz