From 46f54789910cf5b79af0329f8102b70ac64eaf76 Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Wed, 1 Apr 2015 10:58:57 -0700 Subject: [PATCH] setup_board: Fix hard coded symbol path commit 03e8d451bf7d5dc66994ccdc90af39e6128689e5 (setup_board: setup gdb wrapper and debug symbol path) added hard coded paths for the symbol path. Change those to use the BOARD_ROOT variable. Signed-off-by: Geoff Levand --- setup_board | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_board b/setup_board index 7f783b74f7..ad9d65a6be 100755 --- a/setup_board +++ b/setup_board @@ -265,7 +265,7 @@ sudo cp /etc/portage/repos.conf/* "${BOARD_ETC}"/portage/repos.conf/ # make it easy to find debug symbols sudo mkdir -p /usr/lib/debug/build -sudo ln -sfT /build/amd64-usr/usr/lib/debug /usr/lib/debug/build/amd64-usr +sudo ln -sfT ${BOARD_ROOT}/usr/lib/debug /usr/lib/debug/${BOARD_ROOT} generate_all_wrappers