|
@@ -30,8 +30,6 @@ cfg="$4"
|
|
|
boards_origin="$5"
|
|
|
shift 5
|
|
|
|
|
|
-cd "${srctree}"
|
|
|
-
|
|
|
# Only print Skipping... lines if the user explicitly specified BOARDS=. In the
|
|
|
# general case it only serves to obscure the useful output about what actually
|
|
|
# was included.
|
|
@@ -48,7 +46,7 @@ environment*)
|
|
|
esac
|
|
|
|
|
|
for board in $@; do
|
|
|
- board_cfg="arch/mips/configs/generic/board-${board}.config"
|
|
|
+ board_cfg="${srctree}/arch/mips/configs/generic/board-${board}.config"
|
|
|
if [ ! -f "${board_cfg}" ]; then
|
|
|
echo "WARNING: Board config '${board_cfg}' not found"
|
|
|
continue
|
|
@@ -84,7 +82,7 @@ for board in $@; do
|
|
|
done || continue
|
|
|
|
|
|
# Merge this board config fragment into our final config file
|
|
|
- ./scripts/kconfig/merge_config.sh \
|
|
|
+ ${srctree}/scripts/kconfig/merge_config.sh \
|
|
|
-m -O ${objtree} ${cfg} ${board_cfg} \
|
|
|
| grep -Ev '^(#|Using)'
|
|
|
done
|