aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/setup-auh
blob: 5f49e388fa3195f8da3dc8aabcbfe072ff4a5752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
# Initialize Auto Upgrade Helper in a directory.
#
# Called with $1 - the directory to place the setup
CONFIG_DIR=`dirname $0`/auh-config

if [ -z $1 ]; then
  echo "Use: $0 target_dir"
  exit 1
fi

mkdir -p $1
pushd $1

git clone git://git.yoctoproject.org/poky
pushd poky
git config user.email auh@yoctoproject.org
git config user.name "Auto Upgrade Helper"
popd
git clone git://git.yoctoproject.org/auto-upgrade-helper
source poky/oe-init-build-env build
mkdir -p upgrade-helper
popd

cp $CONFIG_DIR/upgrade-helper.conf $1/build/upgrade-helper
cat $CONFIG_DIR/local.conf.append >> $1/build/conf/local.conf