2005-04-16 15:20:36 -07:00
#
# arch/v850/Makefile
#
2005-07-27 11:44:53 -07:00
# Copyright (C) 2001,02,03,05 NEC Corporation
# Copyright (C) 2001,02,03,05 Miles Bader <miles@gnu.org>
2005-04-16 15:20:36 -07:00
#
# 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.
#
arch_dir = arch/v850
2007-10-14 22:21:35 +02:00
KBUILD_CFLAGS += -mv850e
2005-04-16 15:20:36 -07:00
# r16 is a fixed pointer to the current task
2007-10-14 22:21:35 +02:00
KBUILD_CFLAGS += -ffixed-r16 -mno-prolog-function
KBUILD_CFLAGS += -fno-builtin
KBUILD_CFLAGS += -D__linux__ -DUTS_SYSNAME= \" uClinux\"
2005-04-16 15:20:36 -07:00
2005-07-27 11:44:53 -07:00
# By default, build a kernel that runs on the gdb v850 simulator.
KBUILD_DEFCONFIG := sim_defconfig
2005-04-16 15:20:36 -07:00
# This prevents the linker from consolidating the .gnu.linkonce.this_module
# section into .text (which the v850 default linker script for -r does for
# some reason)
LDFLAGS_MODULE += --unique= .gnu.linkonce.this_module
OBJCOPY_FLAGS_BLOB := -I binary -O elf32-little -B v850e
head-y := $( arch_dir) /kernel/head.o $( arch_dir) /kernel/init_task.o
core-y += $( arch_dir) /kernel/
libs-y += $( arch_dir) /lib/
# Deal with the initial contents of the root device
i f d e f R O O T _ F S _ I M A G E
core-y += root_fs_image.o
# Because the kernel build-system erases all explicit .o build rules, we
# have to use an intermediate target to fool it into building for us.
# This results in it being built anew each time, but that's alright.
root_fs_image.o : root_fs_image_force
root_fs_image_force : $( ROOT_FS_IMAGE )
$( OBJCOPY) $( OBJCOPY_FLAGS_BLOB) --rename-section .data= .root,alloc,load,readonly,data,contents $< root_fs_image.o
e n d i f
2005-09-09 21:39:46 +02:00
CLEAN_FILES += root_fs_image.o