Server IP : 127.0.0.2 / Your IP : 3.21.163.198 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/modules/4.4.0-1085-aws/build/arch/tile/ |
Upload File : |
# # 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. # # 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 # If building with TILERA_ROOT set (i.e. using the Tilera Multicore # Development Environment) we can set CROSS_COMPILE based on that. # If we're not cross-compiling, make sure we're on the right architecture. # Only bother to test for a few common targets, to avoid useless errors. ifeq ($(CROSS_COMPILE),) ifdef TILERA_ROOT CROSS_COMPILE := $(TILERA_ROOT)/bin/tile- else goals := $(if $(MAKECMDGOALS), $(MAKECMDGOALS), all) ifneq ($(strip $(filter vmlinux modules all,$(goals))),) HOST_ARCH := $(shell uname -m) ifneq ($(HOST_ARCH),$(ARCH)) $(error Set TILERA_ROOT or CROSS_COMPILE when building $(ARCH) on $(HOST_ARCH)) endif endif endif endif # The tile compiler may emit .eh_frame information for backtracing. # In kernel modules, this causes load failures due to unsupported relocations. KBUILD_CFLAGS += -fno-asynchronous-unwind-tables LIBGCC_PATH := \ $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) # Provide the path to use for "make defconfig". # We default to the newer TILE-Gx architecture if only "tile" is given. ifeq ($(ARCH),tile) KBUILD_DEFCONFIG := tilegx_defconfig else KBUILD_DEFCONFIG := $(ARCH)_defconfig endif # Used as a file extension when useful, e.g. head_$(BITS).o # Not needed for (e.g.) "$(CC) -m32" since the compiler automatically # uses the right default anyway. export BITS ifeq ($(CONFIG_TILEGX),y) BITS := 64 else BITS := 32 endif head-y := arch/tile/kernel/head_$(BITS).o libs-y += arch/tile/lib/ libs-y += $(LIBGCC_PATH) # See arch/tile/Kbuild for content of core part of the kernel core-y += arch/tile/ core-$(CONFIG_TILE_GXIO) += arch/tile/gxio/ ifdef TILERA_ROOT INSTALL_PATH ?= $(TILERA_ROOT)/tile/boot endif install: install -D -m 755 vmlinux $(INSTALL_PATH)/vmlinux-$(KERNELRELEASE) install -D -m 644 .config $(INSTALL_PATH)/config-$(KERNELRELEASE) install -D -m 644 System.map $(INSTALL_PATH)/System.map-$(KERNELRELEASE) define archhelp echo ' install - install kernel into $(INSTALL_PATH)' endef