diff options
Diffstat (limited to 'abs/core-testing/aufs2/create-tarball.sh')
-rwxr-xr-x | abs/core-testing/aufs2/create-tarball.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/abs/core-testing/aufs2/create-tarball.sh b/abs/core-testing/aufs2/create-tarball.sh new file mode 100755 index 0000000..c196c68 --- /dev/null +++ b/abs/core-testing/aufs2/create-tarball.sh @@ -0,0 +1,14 @@ +#!/bin/sh +AUFS2VERSION="-34" +KERNELVERSION=2.6.34 +GITSNAPSHOT=20100517 +# aufs2 (no -xx) for the latest -rc version. +git clone http://git.c3sl.ufpr.br/pub/scm/aufs/aufs2-standalone.git aufs2-standalone.git +cd aufs2-standalone.git +#git checkout origin/aufs2${AUFS2VERSION} +git checkout origin/aufs2 +#*** apply "aufs2-base.patch" and "aufs2-standalone.patch" to your kernel source files. +cd .. +rm -rf aufs2-${KERNELVERSIN}_${GITSNAPSHOT} +cp -a aufs2-standalone.git aufs2-${KERNELVERSION}_${GITSNAPSHOT} +tar -czf aufs2-${KERNELVERSION}_${GITSNAPSHOT}.tar.gz --exclude=.git aufs2-${KERNELVERSION}_${GITSNAPSHOT} |