mirror of https://github.com/hak5/openwrt-owl.git
kernel: improve profiling support, keep static symbols when profiling is enabled
SVN-Revision: 30964owl
parent
9b60eb478a
commit
7b609a31be
|
@ -12,7 +12,11 @@ MODULE="$1"
|
||||||
}
|
}
|
||||||
|
|
||||||
ARGS=
|
ARGS=
|
||||||
[ -n "$KEEP_SYMBOLS" ] || ARGS="-x -G __this_module --strip-unneeded"
|
if [ -n "$KEEP_SYMBOLS" ]; then
|
||||||
|
ARGS="-X --strip-debug"
|
||||||
|
else
|
||||||
|
ARGS="-x -G __this_module --strip-unneeded"
|
||||||
|
fi
|
||||||
|
|
||||||
${CROSS}objcopy \
|
${CROSS}objcopy \
|
||||||
-R .comment \
|
-R .comment \
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
KBUILD_AFLAGS_MODULE := -DMODULE
|
KBUILD_AFLAGS_MODULE := -DMODULE
|
||||||
KBUILD_CFLAGS_MODULE := -DMODULE
|
KBUILD_CFLAGS_MODULE := -DMODULE
|
||||||
-KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
|
-KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
|
||||||
+KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds -s
|
+KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds $(if $(CONFIG_PROFILING),,-s)
|
||||||
|
|
||||||
# Read KERNELRELEASE from include/config/kernel.release (if it exists)
|
# Read KERNELRELEASE from include/config/kernel.release (if it exists)
|
||||||
KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
|
KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
KBUILD_AFLAGS_MODULE := -DMODULE
|
KBUILD_AFLAGS_MODULE := -DMODULE
|
||||||
KBUILD_CFLAGS_MODULE := -DMODULE
|
KBUILD_CFLAGS_MODULE := -DMODULE
|
||||||
-KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
|
-KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds
|
||||||
+KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds -s
|
+KBUILD_LDFLAGS_MODULE := -T $(srctree)/scripts/module-common.lds $(if $(CONFIG_PROFILING),,-s)
|
||||||
|
|
||||||
# Read KERNELRELEASE from include/config/kernel.release (if it exists)
|
# Read KERNELRELEASE from include/config/kernel.release (if it exists)
|
||||||
KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
|
KERNELRELEASE = $(shell cat include/config/kernel.release 2> /dev/null)
|
||||||
|
|
Loading…
Reference in New Issue