|
|
@@ -128,6 +128,10 @@ endef
|
|
|
define Kernel/CompileModules/Default
|
|
|
rm -f $(LINUX_DIR)/vmlinux $(LINUX_DIR)/System.map
|
|
|
+$(KERNEL_MAKE) $(if $(KERNELNAME),$(KERNELNAME),all) modules
|
|
|
+ # If .config did not change, use the previous timestamp to avoid package rebuilds
|
|
|
+ cmp -s $(LINUX_DIR)/.config $(LINUX_DIR)/.config.modules.save && \
|
|
|
+ mv $(LINUX_DIR)/.config.modules.save $(LINUX_DIR)/.config; \
|
|
|
+ $(CP) $(LINUX_DIR)/.config $(LINUX_DIR)/.config.modules.save
|
|
|
endef
|
|
|
|
|
|
OBJCOPY_STRIP = -R .reginfo -R .notes -R .note -R .comment -R .mdebug -R .note.gnu.build-id
|