Makefile (54f53f2b94feb72622bec7a8563fc487d9f97720) | Makefile (26b63e995113dd48fde66c0d0d65eecc6df53172) |
---|---|
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 --- 30 unchanged lines hidden (view full) --- 39 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 \ | 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 --- 30 unchanged lines hidden (view full) --- 39 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) \ | 47 -C gzip -a $(KERNEL_LOAD) -e $(KERNEL_ENTRY) \ |
48 -n 'Linux-$(KERNELRELEASE)' -d $< $@ 49 50$(obj)/uImage: $(obj)/vmlinux.bin.gz FORCE 51 $(call if_changed,uimage) 52 @echo ' Image $@ is ready' 53 54$(obj)/vmlinux.bin: vmlinux FORCE 55 $(call if_changed,objcopy) --- 14 unchanged lines hidden --- | 48 -n 'Linux-$(KERNELRELEASE)' -d $< $@ 49 50$(obj)/uImage: $(obj)/vmlinux.bin.gz FORCE 51 $(call if_changed,uimage) 52 @echo ' Image $@ is ready' 53 54$(obj)/vmlinux.bin: vmlinux FORCE 55 $(call if_changed,objcopy) --- 14 unchanged lines hidden --- |