Skip to content
Snippets Groups Projects
Commit bec2fe7c authored by Felix Fietkau's avatar Felix Fietkau
Browse files

remove CONFIG_JLEVEL. use make -j in the future

SVN-Revision: 8237
parent 49e628f7
No related branches found
No related tags found
No related merge requests found
...@@ -101,13 +101,6 @@ config TAR_VERBOSITY ...@@ -101,13 +101,6 @@ config TAR_VERBOSITY
prompt "Tar verbose" if BUILDOPTS prompt "Tar verbose" if BUILDOPTS
default n default n
config JLEVEL
int
prompt "Number of jobs to run simultaneously" if BUILDOPTS
default "1"
help
Number of jobs to run simultanesouly
config CCACHE config CCACHE
bool bool
prompt "Use ccache" if BUILDOPTS prompt "Use ccache" if BUILDOPTS
......
...@@ -59,7 +59,7 @@ endef ...@@ -59,7 +59,7 @@ endef
define Kernel/CompileModules/Default define Kernel/CompileModules/Default
rm -f $(LINUX_DIR)/vmlinux $(LINUX_DIR)/System.map rm -f $(LINUX_DIR)/vmlinux $(LINUX_DIR)/System.map
$(MAKE) -j$(CONFIG_JLEVEL) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" modules $(MAKE) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" modules
endef endef
ifeq ($(KERNEL),2.6) ifeq ($(KERNEL),2.6)
...@@ -82,7 +82,7 @@ ifeq ($(KERNEL),2.6) ...@@ -82,7 +82,7 @@ ifeq ($(KERNEL),2.6)
endif endif
define Kernel/CompileImage/Default define Kernel/CompileImage/Default
$(call Kernel/SetInitramfs) $(call Kernel/SetInitramfs)
$(MAKE) -j$(CONFIG_JLEVEL) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" $(KERNELNAME) $(MAKE) $(KERNEL_MAKEOPTS) CC="$(KERNEL_CC)" $(KERNELNAME)
$(KERNEL_CROSS)objcopy -O binary -R .reginfo -R .note -R .comment -R .mdebug -S $(LINUX_DIR)/vmlinux $(LINUX_KERNEL) $(KERNEL_CROSS)objcopy -O binary -R .reginfo -R .note -R .comment -R .mdebug -S $(LINUX_DIR)/vmlinux $(LINUX_KERNEL)
$(KERNEL_CROSS)objcopy -R .reginfo -R .note -R .comment -R .mdebug -S $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/vmlinux.elf $(KERNEL_CROSS)objcopy -R .reginfo -R .note -R .comment -R .mdebug -S $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/vmlinux.elf
endef endef
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment