2005-04-17 02:20:36 +04: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 22:55:17 +03:00
KBUILD_DEFCONFIG := default_defconfig
2005-04-17 02:20:36 +04:00
NM = sh $( srctree) /arch/parisc/nm
CHECKFLAGS += -D__hppa__= 1
2012-06-05 08:54:09 +04:00
LIBGCC = $( shell $( CC) $( KBUILD_CFLAGS) -print-libgcc-file-name)
2005-04-17 02:20:36 +04:00
2007-10-19 00:54:51 +04:00
MACHINE := $( shell uname -m)
i f e q ( $( MACHINE ) , p a r i s c * )
NATIVE := 1
e n d i f
2005-04-17 02:20:36 +04:00
i f d e f C O N F I G _ 6 4 B I T
UTS_MACHINE := parisc64
CHECKFLAGS += -D__LP64__= 1 -m64
2007-10-19 00:54:51 +04:00
WIDTH := 64
2012-02-28 01:41:05 +04:00
# FIXME: if no default set, should really try to locate dynamically
i f e q ( $( CROSS_COMPILE ) , )
2007-10-19 00:54:51 +04:00
CROSS_COMPILE := hppa64-linux-gnu-
2012-02-28 01:41:05 +04:00
e n d i f
2007-10-19 00:54:51 +04:00
e l s e # 32-bit
WIDTH :=
2005-04-17 02:20:36 +04:00
e n d i f
2007-10-19 00:54:51 +04:00
# attempt to help out folks who are cross-compiling
i f e q ( $( NATIVE ) , 1 )
CROSS_COMPILE := hppa$( WIDTH) -linux-
e n d i f
2005-04-17 02:20:36 +04: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.
cflags-y += -mno-space-regs -mfast-indirect-calls
# 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 06:48:34 +04:00
cflags-y += -mdisable-fpregs
2005-04-17 02:20:36 +04:00
# Without this, "ld -r" results in .text sections that are too big
# (> 0x40000) for branches to reach stubs.
2009-02-09 02:43:36 +03:00
i f n d e f C O N F I G _ F U N C T I O N _ T R A C E R
cflags-y += -ffunction-sections
e n d i f
2005-04-17 02:20:36 +04:00
# select which processor to optimise for
cflags-$(CONFIG_PA7100) += -march= 1.1 -mschedule= 7100
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-15 00:21:35 +04:00
KBUILD_CFLAGS += $( cflags-y)
2005-04-17 02:20:36 +04:00
2012-05-07 13:28:13 +04:00
kernel-y := mm/ kernel/ math-emu/
2005-04-17 02:20:36 +04:00
kernel-$(CONFIG_HPUX) += hpux/
core-y += $( addprefix arch/parisc/, $( kernel-y) )
2012-06-05 08:54:09 +04:00
libs-y += arch/parisc/lib/ $( LIBGCC)
2005-04-17 02:20:36 +04:00
drivers-$(CONFIG_OPROFILE) += arch/parisc/oprofile/
2008-12-08 12:43:08 +03:00
PALO := $( shell if ( which palo 2>& 1) ; then : ; \
2007-10-19 02:09:59 +04:00
elif [ -x /sbin/palo ] ; then echo /sbin/palo; \
fi )
2007-10-20 20:31:33 +04:00
PALOCONF := $( shell if [ -f $( src) /palo.conf ] ; then echo $( src) /palo.conf; \
else echo $( obj) /palo.conf; \
fi )
2007-10-19 02:09:59 +04:00
palo : vmlinux
2007-10-20 20:31:33 +04:00
@if test ! -x " $( PALO) " ; then \
2007-10-19 02:09:59 +04: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 20:31:33 +04: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 02:09:59 +04: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 20:31:33 +04:00
$( PALO) -f $( PALOCONF)
2007-10-19 02:09:59 +04:00
2007-10-19 00:54:51 +04:00
# Shorthands for known targets not supported by parisc, use vmlinux as default
Image zImage bzImage : vmlinux
2005-04-17 02:20:36 +04:00
kernel_install : vmlinux
sh $( src) /arch/parisc/install.sh \
$( KERNELRELEASE) $< System.map " $( INSTALL_PATH) "
install : kernel_install modules_install
2005-09-09 22:57:26 +04:00
CLEAN_FILES += lifimage
2005-04-17 02:20:36 +04:00
MRPROPER_FILES += palo.conf
d e f i n e a r c h h e l p
@echo '* vmlinux - Uncompressed kernel image (./vmlinux)'
2007-10-19 02:09:59 +04:00
@echo ' palo - Bootable image (./lifimage)'
2005-04-17 02:20:36 +04:00
@echo ' install - Install kernel using'
2009-07-20 23:37:11 +04:00
@echo ' (your) ~/bin/$(INSTALLKERNEL) or'
@echo ' (distribution) /sbin/$(INSTALLKERNEL) or'
2005-04-17 02:20:36 +04:00
@echo ' copy to $$(INSTALL_PATH)'
e n d e f
2007-10-19 00:54:51 +04: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