Makefile (470fba7ebe60ad9185056b080b331abad24b4df9) | Makefile (664718a34348a9ef6f966c3977e8df927a378134) |
---|---|
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 --- 19 unchanged lines hidden (view full) --- 28 29$(obj)/zImage: $(obj)/compressed/vmlinux FORCE 30 $(call if_changed,objcopy) 31 @echo ' Kernel: $@ is ready' 32 33$(obj)/compressed/vmlinux: FORCE 34 $(Q)$(MAKE) $(build)=$(obj)/compressed $@ 35 | 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 --- 19 unchanged lines hidden (view full) --- 28 29$(obj)/zImage: $(obj)/compressed/vmlinux FORCE 30 $(call if_changed,objcopy) 31 @echo ' Kernel: $@ is ready' 32 33$(obj)/compressed/vmlinux: FORCE 34 $(Q)$(MAKE) $(build)=$(obj)/compressed $@ 35 |
36ifeq ($(CONFIG_32BIT),y) |
|
36KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ 37 $$[$(CONFIG_PAGE_OFFSET) + \ | 37KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ 38 $$[$(CONFIG_PAGE_OFFSET) + \ |
39 $(CONFIG_ZERO_PAGE_OFFSET)]') 40else 41KERNEL_LOAD := $(shell /bin/bash -c 'printf "0x%08x" \ 42 $$[$(CONFIG_PAGE_OFFSET) + \ |
|
38 $(CONFIG_MEMORY_START) + \ 39 $(CONFIG_ZERO_PAGE_OFFSET)]') | 43 $(CONFIG_MEMORY_START) + \ 44 $(CONFIG_ZERO_PAGE_OFFSET)]') |
45endif |
|
40 41KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \ 42 $$[$(CONFIG_PAGE_OFFSET) + \ 43 $(CONFIG_MEMORY_START) + \ 44 $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]') 45 46quiet_cmd_uimage = UIMAGE $@ 47 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ --- 23 unchanged lines hidden --- | 46 47KERNEL_ENTRY := $(shell /bin/bash -c 'printf "0x%08x" \ 48 $$[$(CONFIG_PAGE_OFFSET) + \ 49 $(CONFIG_MEMORY_START) + \ 50 $(CONFIG_ZERO_PAGE_OFFSET) + $(CONFIG_ENTRY_OFFSET)]') 51 52quiet_cmd_uimage = UIMAGE $@ 53 cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A sh -O linux -T kernel \ --- 23 unchanged lines hidden --- |