2005-04-17 00:20:36 +02:00
|
|
|
#
|
|
|
|
# parisc/Makefile
|
|
|
|
#
|
|
|
|
# This file is included by the global makefile so that you can add your own
|
|
|
|
# architecture-specific flags and dependencies. Remember to do have actions
|
|
|
|
# for "archclean" and "archdep" for cleaning up and making dependencies for
|
|
|
|
# this architecture
|
|
|
|
#
|
|
|
|
# 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) 1994 by Linus Torvalds
|
|
|
|
# Portions Copyright (C) 1999 The Puffin Group
|
|
|
|
#
|
|
|
|
# Modified for PA-RISC Linux by Paul Lahaie, Alex deVries,
|
|
|
|
# Mike Shaver, Helge Deller and Martin K. Petersen
|
|
|
|
#
|
2008-02-26 20:55:17 +01:00
|
|
|
|
2013-06-29 13:31:24 +02:00
|
|
|
KBUILD_IMAGE := vmlinuz
|
|
|
|
|
2008-02-26 20:55:17 +01:00
|
|
|
KBUILD_DEFCONFIG := default_defconfig
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
NM = sh $(srctree)/arch/parisc/nm
|
|
|
|
CHECKFLAGS += -D__hppa__=1
|
2012-06-05 06:54:09 +02:00
|
|
|
LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-libgcc-file-name)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
ifdef CONFIG_64BIT
|
|
|
|
UTS_MACHINE := parisc64
|
|
|
|
CHECKFLAGS += -D__LP64__=1 -m64
|
2013-05-11 21:04:09 +02:00
|
|
|
CC_ARCHES = hppa64
|
2007-10-18 22:54:51 +02:00
|
|
|
else # 32-bit
|
2013-05-11 21:04:09 +02:00
|
|
|
CC_ARCHES = hppa hppa2.0 hppa1.1
|
2005-04-17 00:20:36 +02:00
|
|
|
endif
|
|
|
|
|
2013-05-11 21:04:09 +02:00
|
|
|
ifneq ($(SUBARCH),$(UTS_MACHINE))
|
|
|
|
ifeq ($(CROSS_COMPILE),)
|
|
|
|
CC_SUFFIXES = linux linux-gnu unknown-linux-gnu
|
|
|
|
CROSS_COMPILE := $(call cc-cross-prefix, \
|
|
|
|
$(foreach a,$(CC_ARCHES), \
|
|
|
|
$(foreach s,$(CC_SUFFIXES),$(a)-$(s)-)))
|
|
|
|
endif
|
2007-10-18 22:54:51 +02:00
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
OBJCOPY_FLAGS =-O binary -R .note -R .comment -S
|
|
|
|
|
|
|
|
cflags-y := -pipe
|
|
|
|
|
|
|
|
# These flags should be implied by an hppa-linux configuration, but they
|
|
|
|
# are not in gcc 3.2.
|
2014-09-23 02:54:50 +02:00
|
|
|
cflags-y += -mno-space-regs
|
|
|
|
|
|
|
|
# -mfast-indirect-calls is only relevant for 32-bit kernels.
|
|
|
|
ifndef CONFIG_64BIT
|
|
|
|
cflags-y += -mfast-indirect-calls
|
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
# Currently we save and restore fpregs on all kernel entry/interruption paths.
|
|
|
|
# If that gets optimized, we might need to disable the use of fpregs in the
|
|
|
|
# kernel.
|
2005-10-22 04:48:34 +02:00
|
|
|
cflags-y += -mdisable-fpregs
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
# Without this, "ld -r" results in .text sections that are too big
|
|
|
|
# (> 0x40000) for branches to reach stubs.
|
2009-02-09 00:43:36 +01:00
|
|
|
ifndef CONFIG_FUNCTION_TRACER
|
|
|
|
cflags-y += -ffunction-sections
|
|
|
|
endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2013-01-31 22:44:28 +01:00
|
|
|
# Use long jumps instead of long branches (needed if your linker fails to
|
2013-04-23 21:29:03 +02:00
|
|
|
# link a too big vmlinux executable). Not enabled for building modules.
|
|
|
|
ifdef CONFIG_MLONGCALLS
|
|
|
|
KBUILD_CFLAGS_KERNEL += -mlong-calls
|
|
|
|
endif
|
2013-01-31 22:44:28 +01:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
# select which processor to optimise for
|
2013-05-29 11:56:58 +02:00
|
|
|
cflags-$(CONFIG_PA7000) += -march=1.1 -mschedule=7100
|
2005-04-17 00:20:36 +02:00
|
|
|
cflags-$(CONFIG_PA7200) += -march=1.1 -mschedule=7200
|
|
|
|
cflags-$(CONFIG_PA7100LC) += -march=1.1 -mschedule=7100LC
|
|
|
|
cflags-$(CONFIG_PA7300LC) += -march=1.1 -mschedule=7300
|
|
|
|
cflags-$(CONFIG_PA8X00) += -march=2.0 -mschedule=8000
|
|
|
|
|
|
|
|
head-y := arch/parisc/kernel/head.o
|
|
|
|
|
2007-10-14 22:21:35 +02:00
|
|
|
KBUILD_CFLAGS += $(cflags-y)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2012-05-07 11:28:13 +02:00
|
|
|
kernel-y := mm/ kernel/ math-emu/
|
2005-04-17 00:20:36 +02:00
|
|
|
kernel-$(CONFIG_HPUX) += hpux/
|
|
|
|
|
|
|
|
core-y += $(addprefix arch/parisc/, $(kernel-y))
|
2012-06-05 06:54:09 +02:00
|
|
|
libs-y += arch/parisc/lib/ $(LIBGCC)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
drivers-$(CONFIG_OPROFILE) += arch/parisc/oprofile/
|
|
|
|
|
2008-12-08 10:43:08 +01:00
|
|
|
PALO := $(shell if (which palo 2>&1); then : ; \
|
2007-10-19 00:09:59 +02:00
|
|
|
elif [ -x /sbin/palo ]; then echo /sbin/palo; \
|
|
|
|
fi)
|
|
|
|
|
2007-10-20 18:31:33 +02:00
|
|
|
PALOCONF := $(shell if [ -f $(src)/palo.conf ]; then echo $(src)/palo.conf; \
|
|
|
|
else echo $(obj)/palo.conf; \
|
|
|
|
fi)
|
|
|
|
|
2013-10-18 21:18:46 +02:00
|
|
|
palo lifimage: vmlinuz
|
2007-10-20 18:31:33 +02:00
|
|
|
@if test ! -x "$(PALO)"; then \
|
2007-10-19 00:09:59 +02:00
|
|
|
echo 'ERROR: Please install palo first (apt-get install palo)';\
|
|
|
|
echo 'or build it from source and install it somewhere in your $$PATH';\
|
|
|
|
false; \
|
|
|
|
fi
|
2007-10-20 18:31:33 +02:00
|
|
|
@if test ! -f "$(PALOCONF)"; then \
|
|
|
|
cp $(src)/arch/parisc/defpalo.conf $(obj)/palo.conf; \
|
|
|
|
echo 'A generic palo config file ($(obj)/palo.conf) has been created for you.'; \
|
2007-10-19 00:09:59 +02:00
|
|
|
echo 'You should check it and re-run "make palo".'; \
|
|
|
|
echo 'WARNING: the "lifimage" file is now placed in this directory by default!'; \
|
|
|
|
false; \
|
|
|
|
fi
|
2007-10-20 18:31:33 +02:00
|
|
|
$(PALO) -f $(PALOCONF)
|
2007-10-19 00:09:59 +02:00
|
|
|
|
2013-10-18 21:18:46 +02:00
|
|
|
BOOT_TARGETS = zImage Image palo lifimage
|
|
|
|
INSTALL_TARGETS = zinstall install
|
|
|
|
|
|
|
|
PHONY += bzImage $(BOOT_TARGETS) $(INSTALL_TARGETS)
|
|
|
|
|
|
|
|
bzImage zImage: vmlinuz
|
2013-06-29 13:31:24 +02:00
|
|
|
Image: vmlinux
|
|
|
|
|
|
|
|
vmlinuz: vmlinux
|
|
|
|
@gzip -cf -9 $< > $@
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2013-10-18 21:18:46 +02:00
|
|
|
install:
|
|
|
|
$(CONFIG_SHELL) $(src)/arch/parisc/install.sh \
|
|
|
|
$(KERNELRELEASE) vmlinux System.map "$(INSTALL_PATH)"
|
|
|
|
zinstall:
|
|
|
|
$(CONFIG_SHELL) $(src)/arch/parisc/install.sh \
|
|
|
|
$(KERNELRELEASE) vmlinuz System.map "$(INSTALL_PATH)"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2005-09-09 20:57:26 +02:00
|
|
|
CLEAN_FILES += lifimage
|
2005-04-17 00:20:36 +02:00
|
|
|
MRPROPER_FILES += palo.conf
|
|
|
|
|
|
|
|
define archhelp
|
|
|
|
@echo '* vmlinux - Uncompressed kernel image (./vmlinux)'
|
2013-06-29 13:31:24 +02:00
|
|
|
@echo ' vmlinuz - Compressed kernel image (./vmlinuz)'
|
2007-10-19 00:09:59 +02:00
|
|
|
@echo ' palo - Bootable image (./lifimage)'
|
2013-10-18 21:18:46 +02:00
|
|
|
@echo ' install - Install uncompressed vmlinux kernel using'
|
2009-07-20 21:37:11 +02:00
|
|
|
@echo ' (your) ~/bin/$(INSTALLKERNEL) or'
|
|
|
|
@echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
|
2005-04-17 00:20:36 +02:00
|
|
|
@echo ' copy to $$(INSTALL_PATH)'
|
2013-10-18 21:18:46 +02:00
|
|
|
@echo ' zinstall - Install compressed vmlinuz kernel'
|
2005-04-17 00:20:36 +02:00
|
|
|
endef
|
2007-10-18 22:54:51 +02:00
|
|
|
|
|
|
|
# we require gcc 3.3 or above to compile the kernel
|
|
|
|
archprepare: checkbin
|
|
|
|
checkbin:
|
|
|
|
@if test "$(call cc-version)" -lt "0303"; then \
|
|
|
|
echo -n "Sorry, GCC v3.3 or above is required to build " ; \
|
|
|
|
echo "the kernel." ; \
|
|
|
|
false ; \
|
|
|
|
fi
|