From bb3a6fafce7abf1f1b3a95c4cf767b76a32621a0 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 14 Oct 2012 12:50:44 +0200 Subject: libssp is a package now --- package/uclibc/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/package/uclibc/Makefile b/package/uclibc/Makefile index 5319881d8..26ab23136 100644 --- a/package/uclibc/Makefile +++ b/package/uclibc/Makefile @@ -30,9 +30,6 @@ do-install: test -z $(ADK_RUNTIME_TIMEZONE) || \ grep $(ADK_RUNTIME_TIMEZONE) ./files/tz.lst | \ cut -f 2 > $(IDIR_UCLIBC)/etc/TZ -ifeq ($(ADK_TOOLCHAIN_GCC_USE_SSP),y) - $(CP) $(STAGING_TARGET_DIR)/lib/libssp.so* $(IDIR_UCLIBC)/$(ADK_TARGET_LIBC_PATH) -endif $(CP) $(STAGING_TARGET_DIR)/lib/libc.so.* $(IDIR_UCLIBC)/$(ADK_TARGET_LIBC_PATH) $(CP) $(STAGING_TARGET_DIR)/lib/libuClibc-$(PKG_VERSION).so \ $(IDIR_UCLIBC)/$(ADK_TARGET_LIBC_PATH) -- cgit v1.2.3 From 1472c499c814bf037a4ebc167fccf4b4cc3ff514 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 14 Oct 2012 12:51:11 +0200 Subject: no default for debugsfs, add option for debug info --- target/linux/config/Config.in.debug | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/target/linux/config/Config.in.debug b/target/linux/config/Config.in.debug index 6bf4ce0c6..50c173321 100644 --- a/target/linux/config/Config.in.debug +++ b/target/linux/config/Config.in.debug @@ -59,12 +59,18 @@ config ADK_KERNEL_MAGIC_SYSRQ config ADK_KERNEL_DEBUG_FS prompt "Debug Filesystem" boolean - default y + default n help debugfs is a virtual file system that kernel developers use to put debugging files into. Enable this option to be able to read and write to these files. +config ADK_KERNEL_DEBUG_INFO + prompt "Debug info" + boolean + default n + help + config ADK_KERNEL_DEBUG_WITH_KGDB prompt "Enable remote kernel debugging using KGDB" boolean -- cgit v1.2.3 From 07dec6af07074b77165d8eb18c9086e7de4b1386 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 14 Oct 2012 13:01:18 +0200 Subject: install gdb when chosen --- toolchain/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/toolchain/Makefile b/toolchain/Makefile index fd92b46f7..ed5f2652c 100644 --- a/toolchain/Makefile +++ b/toolchain/Makefile @@ -49,7 +49,11 @@ endif gcc-configure: $(LIBC)-prepare $(LIBC)-compile: gcc-configure gcc-compile: $(LIBC)-install +ifeq ($(ADK_TOOLCHAIN_GDB),y) +$(LIBC)-fixup: gdb-install +else $(LIBC)-fixup: gcc-install +endif $(STAGING_HOST_DIR): @mkdir -p $(STAGING_HOST_DIR)/lib -- cgit v1.2.3