#!/bin/sh
#
# Sync git-svn repo to git repository.
#
# To be called in crontab.
if [ $# -lt 2 ] ; then
echo "usage: ${0} GIT_SVN_REPO_CHECKOUT GIT_REPO"
exit 2
fi
GIT_SVN_REPO_CHECKOUT=$1
GIT_REPO=$2
if [ ! -d $GIT_SVN_REPO_CHECKOUT/.git/svn ] ; then
echo "error: no git-svn checkout found in $GIT_SVN_REPO_CHECKOUT"
exit 3
fi
p=$(pwd)
cd $GIT_SVN_REPO_CHECKOUT
git svn rebase
git push --all $GIT_REPO
cd $p
# vim:ft=sh
next.git Git repository'/>
Merge tag 'acpi-4.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fixes from Rafael Wysocki:
"These fix recent ACPICA regressions, an older PCI IRQ management
regression, and an incorrect return value of a function in the APEI
code.
Specifics:
- Fix three ACPICA issues related to the interpreter locking and
introduced by recent changes in that area (Lv Zheng).
- Fix a PCI IRQ management regression introduced during the 4.7 cycle
and related to the configuration of shared IRQs on systems with an
ISA bus (Sinan Kaya).
- Fix up a return value of one function in the APEI code (Punit
Agrawal)"
* tag 'acpi-4.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPICA: Dispatcher: Fix interpreter locking around acpi_ev_initialize_region()
ACPICA: Dispatcher: Fix an unbalanced lock exit path in acpi_ds_auto_serialize_method()
ACPICA: Dispatcher: Fix order issue of method termination
ACPI / APEI: Fix incorrect return value of ghes_proc()
ACPI/PCI: pci_link: Include PIRQ_PENALTY_PCI_USING for ISA IRQs
ACPI/PCI: pci_link: penalize SCI correctly
ACPI/PCI/IRQ: assign ISA IRQ directly during early boot stages