[Buildroot] [PATCH 1/1] configs: csky_gx6605s need copy gdbinit

Guo Ren ren_guo at c-sky.com
Thu Mar 23 08:57:15 UTC 2017


gdbinit need load gx6605s.dtb, so we copy the gdbinit
to the output/images and run the gdb in it.

Signed-off-by: Guo Ren <ren_guo at c-sky.com>
---
 board/csky/gx6605s/post-image.sh | 5 +++++
 board/csky/readme.txt            | 6 ++++--
 configs/csky_gx6605s_defconfig   | 1 +
 3 files changed, 10 insertions(+), 2 deletions(-)
 create mode 100755 board/csky/gx6605s/post-image.sh

diff --git a/board/csky/gx6605s/post-image.sh b/board/csky/gx6605s/post-image.sh
new file mode 100755
index 0000000..efc2acd
--- /dev/null
+++ b/board/csky/gx6605s/post-image.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+if [ ! -f $BINARIES_DIR/gdbinit ]; then
+	cp -af board/csky/gx6605s/gdbinit $BINARIES_DIR/gdbinit
+fi
+
diff --git a/board/csky/readme.txt b/board/csky/readme.txt
index a820e3b..4cbfcb8 100644
--- a/board/csky/readme.txt
+++ b/board/csky/readme.txt
@@ -43,7 +43,8 @@ After building, you should obtain this tree:
     output/images/
     ├── vmlinux
     ├── rootfs.ext2
-    └── <board name>.dtb
+    ├── gx6605s.dtb
+    └── gdbinit
 
 How to run it
 =============
@@ -83,5 +84,6 @@ Run
 
   Setup the Console with the rate 115200/8-N-1.
 
-  $ ./output/host/usr/bin/csky-linux-gdb -x board/csky/gx6605s/gdbinit output/images/vmlinux
+  $ cd output/images
+  $ ../host/usr/bin/csky-linux-gdb -x gdbinit vmlinux
 
diff --git a/configs/csky_gx6605s_defconfig b/configs/csky_gx6605s_defconfig
index 5f39c53..7245d76 100644
--- a/configs/csky_gx6605s_defconfig
+++ b/configs/csky_gx6605s_defconfig
@@ -8,6 +8,7 @@ BR2_TOOLCHAIN_EXTERNAL_CUSTOM_GLIBC=y
 BR2_TOOLCHAIN_EXTERNAL_CXX=y
 BR2_TOOLCHAIN_EXTERNAL_GDB_SERVER_COPY=y
 BR2_TARGET_GENERIC_GETTY_PORT="ttyS0"
+BR2_ROOTFS_POST_IMAGE_SCRIPT="board/csky/gx6605s/post-image.sh"
 BR2_LINUX_KERNEL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL=y
 BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="https://github.com/c-sky/linux-4.9.y/archive/314c498ddc8c43a66ca96ff3af7da98e10fa1cc6.tar.gz"
-- 
1.9.1



More information about the buildroot mailing list