From: Luis R. Rodriguez Date: Mon, 18 Jun 2012 22:54:49 +0000 (-0700) Subject: compat-wireless: fix stable alias on admin-update.sh X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=51172bbee60fe40a10234fccdebea60355950e58;p=openwrt%2Fstaging%2Fblogic.git compat-wireless: fix stable alias on admin-update.sh When running ./scripts/admin-update.sh -s -- the code will look for all pathces on linux-next since the current head tag on the stable release we are on that have the stable@kernel.org on the commit log. The e-mail address alias has changed to stable@vger.kernel.org. This patch updates that alias so we can continue to run: ./scripts/admin-update.sh -s Signed-off-by: Luis R. Rodriguez --- diff --git a/scripts/admin-update.sh b/scripts/admin-update.sh index 8a38d73c58aa..274607fc9c62 100755 --- a/scripts/admin-update.sh +++ b/scripts/admin-update.sh @@ -502,8 +502,8 @@ if [[ "$GET_STABLE_PENDING" = y ]]; then fi echo -e "${GREEN}Generating stable cherry picks... ${NORMAL}" echo -e "\nUsing command on directory $PWD:" - echo -e "\ngit format-patch --grep=\"stable@kernel.org\" -o $PENDING_STABLE_DIR ${LAST_STABLE_UPDATE}.. $WSTABLE" - git format-patch --grep="stable@kernel.org" -o $PENDING_STABLE_DIR ${LAST_STABLE_UPDATE}.. $WSTABLE + echo -e "\ngit format-patch --grep=\"stable@vger.kernel.org\" -o $PENDING_STABLE_DIR ${LAST_STABLE_UPDATE}.. $WSTABLE" + git format-patch --grep="stable@vger.kernel.org" -o $PENDING_STABLE_DIR ${LAST_STABLE_UPDATE}.. $WSTABLE if [ ! -d ${LAST_DIR}/${PENDING_STABLE_DIR} ]; then echo -e "Assumption that ${LAST_DIR}/${PENDING_STABLE_DIR} directory exists failed" exit 1