compat-wireless: fix stable alias on admin-update.sh
authorLuis R. Rodriguez <mcgrof@frijolero.org>
Mon, 18 Jun 2012 22:54:49 +0000 (15:54 -0700)
committerLuis R. Rodriguez <mcgrof@frijolero.org>
Mon, 18 Jun 2012 22:54:49 +0000 (15:54 -0700)
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 <mcgrof@frijolero.org>
scripts/admin-update.sh

index 8a38d73c58aa11d887e230038693de202157b253..274607fc9c627dc096c39dba6ff39b8bacffdaa7 100755 (executable)
@@ -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