1
0
mirror of git://projects.qi-hardware.com/openwrt-packages.git synced 2024-11-22 21:19:41 +02:00

nanonote-files: compile-openwrt-xburst.sh: fix the kernel.config path

This commit is contained in:
Xiangfu Liu 2011-10-20 15:11:22 +08:00
parent bf77201513
commit 9e7c7275c4

View File

@ -7,7 +7,7 @@ OPENWRT_DIR_NAME="openwrt-xburst."$1
OPENWRT_DIR="/home/xiangfu/${OPENWRT_DIR_NAME}/" OPENWRT_DIR="/home/xiangfu/${OPENWRT_DIR_NAME}/"
CONFIG_FILE_TYPE="config."$1 CONFIG_FILE_TYPE="config."$1
MAKE_VARS=" V=99 IGNORE_ERRORS=m -j4 " MAKE_VARS=" V=99 IGNORE_ERRORS=m "
######################################################################## ########################################################################
DATE=$(date "+%Y-%m-%d") DATE=$(date "+%Y-%m-%d")
@ -85,7 +85,7 @@ ${GET_FEEDS_VERSION_SH} ${OPENWRT_DIR} > ${VERSIONS_FILE}
echo "copy all files to IMAGES_DIR..." echo "copy all files to IMAGES_DIR..."
cp .config ${IMAGES_DIR}/config cp .config ${IMAGES_DIR}/config
cp build_dir/linux-xburst_qi_lb60/linux-2.6*/.config ${IMAGES_DIR}/kernel.config cp build_dir/linux-xburst_qi_lb60/linux-*/.config ${IMAGES_DIR}/kernel.config
cp feeds.conf ${IMAGES_DIR}/ cp feeds.conf ${IMAGES_DIR}/
cp -a bin/xburst/* ${IMAGES_DIR} 2>/dev/null cp -a bin/xburst/* ${IMAGES_DIR} 2>/dev/null
mkdir -p ${IMAGES_DIR}/files mkdir -p ${IMAGES_DIR}/files