core/linux-3-CHAKRA/create-aufs.sh
philm 36f61365d7 merge kernel-dev to testing
- update kernel to 3.2-series
- extramodules get installed to '/lib/modules/'
- tuxonice tools kept in kernel-dev for now
2012-01-28 17:08:10 +01:00

32 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
rm -Rf aufs3-standalone
# clone the aufs repository to the local disk
git clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-standalone.git
cd aufs3-standalone
git branch -r
git checkout origin/aufs3.2
# modify what you want
# and after
# create the patch with the directories: fs, include and Documentation
rm -v $(find . -type f -name '*.orig')
grep -qse 'EXPORT_SYMBOL(' aufs3-standalone.patch && \
sed -i-old -e 's|EXPORT_SYMBOL(|EXPORT_SYMBOL_GPL(|' aufs3-standalone.patch
rm -rf /tmp/linux-3.2
mkdir /tmp/linux-3.2
cp -a fs /tmp/linux-3.2
cp -a include /tmp/linux-3.2
cp -a Documentation /tmp/linux-3.2
echo "test"
rm /tmp/linux-3.2/include/linux/Kbuild
cd /tmp
diff -Naur null linux-3.2 | filterdiff | \
sed -e 's|null\(/include/linux/Kbuild\)|linux-3.2-old\1|;s|^--- null.*|--- /dev/null|;\|linux-3.2/include/linux/Kbuild|,${\|@@ -0,0 +1 @@|,$d}' \
| bzip2 > aufs$(sed -ne 's|#define.*AUFS_VERSION.*"\(.*\)"|\1|p' linux-3.2/include/linux/aufs_type.h).patch.bz2
cd $OLDPWD
# the patch is created in /tmp
# the other patches needed to compile are in the base directory