Makefile (c1f3ee120bb61045b1c0a3ead620d1d65af47130) | Makefile (66b5bf4216631628788bc48b028c203e8538f43e) |
---|---|
1# 2# arch/sh/boot/Makefile 3# 4# This file is subject to the terms and conditions of the GNU General Public 5# License. See the file "COPYING" in the main directory of this archive 6# for more details. 7# 8# Copyright (C) 1999 Stuart Menefy --- 18 unchanged lines hidden (view full) --- 27 28$(obj)/zImage: $(obj)/compressed/vmlinux FORCE 29 $(call if_changed,objcopy) 30 @echo ' Kernel: $@ is ready' 31 32$(obj)/compressed/vmlinux: FORCE 33 $(Q)$(MAKE) $(build)=$(obj)/compressed $@ 34 | 1# 2# arch/sh/boot/Makefile 3# 4# This file is subject to the terms and conditions of the GNU General Public 5# License. See the file "COPYING" in the main directory of this archive 6# for more details. 7# 8# Copyright (C) 1999 Stuart Menefy --- 18 unchanged lines hidden (view full) --- 27 28$(obj)/zImage: $(obj)/compressed/vmlinux FORCE 29 $(call if_changed,objcopy) 30 @echo ' Kernel: $@ is ready' 31 32$(obj)/compressed/vmlinux: FORCE 33 $(Q)$(MAKE) $(build)=$(obj)/compressed $@ 34 |
35KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%8x" \ | 35KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ |
36 $$[$(CONFIG_PAGE_OFFSET) + \ 37 $(CONFIG_MEMORY_START) + \ 38 $(CONFIG_ZERO_PAGE_OFFSET)]') 39 | 36 $$[$(CONFIG_PAGE_OFFSET) + \ 37 $(CONFIG_MEMORY_START) + \ 38 $(CONFIG_ZERO_PAGE_OFFSET)]') 39 |
40KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%8x" \ | 40KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \ |
41 $$[$(CONFIG_PAGE_OFFSET) + \ 42 $(CONFIG_MEMORY_START) + \ 43 $(CONFIG_ZERO_PAGE_OFFSET)+0x1000]') 44 45quiet_cmd_uimage = UIMAGE $@ 46 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ 47 -C none -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \ 48 -n 'Linux-$(KERNELRELEASE)' -d $< $@ --- 21 unchanged lines hidden --- | 41 $$[$(CONFIG_PAGE_OFFSET) + \ 42 $(CONFIG_MEMORY_START) + \ 43 $(CONFIG_ZERO_PAGE_OFFSET)+0x1000]') 44 45quiet_cmd_uimage = UIMAGE $@ 46 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ 47 -C none -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \ 48 -n 'Linux-$(KERNELRELEASE)' -d $< $@ --- 21 unchanged lines hidden --- |