wok-6.x view linux64-aufs/receipt @ rev 18385
linux64-aufs, aufs: update 3.2.71 patch
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Fri Sep 18 09:33:57 2015 +0200 (2015-09-18) | 
| parents | 4184d3fe3f1b | 
| children | bf1acce7f66c | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="linux64-aufs"
     4 SOURCE="aufs"
     5 VERSION="20130311"
     6 CATEGORY="base-system"
     7 SHORT_DESC="aufs3 kernel module"
     8 MAINTAINER="godane@slitaz.org"
     9 LICENSE="GPL2"
    10 WEB_SITE="http://aufs.sf.net/"
    11 TARBALL="$SOURCE-$VERSION.tar.bz2"
    12 WGET_URL="git|git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-standalone.git"
    13 BRANCH="origin/${PACKAGE}3.2"
    15 DEPENDS="linux64"
    16 BUILD_DEPENDS="linux64-module-headers git xz uclibc-cross-compiler-x86_64"
    18 AUFS_NOT_RAMFS="uclibc-cross-compiler-x86_64 is not compatible with aufs+tmpfs 8("
    20 # Rules to configure and make the package.
    21 compile_rules()
    22 {
    23 	sed -i \
    24 		-e 's|CONFIG_AUFS_BRANCH_MAX_127 =.*|CONFIG_AUFS_BRANCH_MAX_127 =|' \
    25 		-e 's|#CONFIG_AUFS_BRANCH_MAX_32767 =.*|CONFIG_AUFS_BRANCH_MAX_32767 = y|' \
    26 		-e 's|CONFIG_AUFS_HNOTIFY =.*|CONFIG_AUFS_HNOTIFY = y|' \
    27 		-e 's|CONFIG_AUFS_HFSNOTIFY =.*|CONFIG_AUFS_HFSNOTIFY = y|' \
    28 		-e 's|CONFIG_AUFS_EXPORT =.*|CONFIG_AUFS_EXPORT = y|' \
    29 		-e 's|CONFIG_AUFS_SHWH =.*|CONFIG_AUFS_SHWH = y|' \
    30 		-e 's|CONFIG_AUFS_BDEV_LOOP =.*|CONFIG_AUFS_BDEV_LOOP = y|' \
    31 		-e 's|CONFIG_AUFS_BR_RAMFS =.*|CONFIG_AUFS_BR_RAMFS = y|' \
    32 		-e 's|CONFIG_AUFS_INO_T_64 =.*|CONFIG_AUFS_INO_T_64 = y|' \
    33 		-e 's|CONFIG_AUFS_DEBUG =.*|CONFIG_AUFS_DEBUG =|' config.mk
    35 	# The sed fixes are from gentoo portage build.
    36 	sed -i "s:aufs.ko usr/include/linux/aufs_type.h:aufs.ko:g" Makefile
    37 	sed -i "s:__user::g" include/linux/aufs_type.h
    39 	# Linux 3.2.71 support
    40 	sed -i 's/d_u.d_child/d_child/' fs/aufs/dcsub.c fs/aufs/hnotify.c
    41 	sed -i 's/ d_alias/ d_u.d_alias/' fs/aufs/hnotify.c fs/aufs/export.c
    43 	make -j 1 KDIR=/usr/src/linux
    44 	xz -f fs/aufs/aufs.ko
    45 }
    47 # Rules to gen a SliTaz package suitable for Tazpkg.
    48 genpkg_rules()
    49 {
    50 	EXTRAVERSION=_${kvers}
    51 	mkdir -p $fs/lib/modules/${kvers}-slitaz64/kernel/fs/aufs
    52 	install -o root -m 0644 $src/fs/aufs/aufs.ko.xz \
    53 		$fs/lib/modules/${kvers}-slitaz64/kernel/fs/aufs/aufs.ko.xz
    54 	install -D -o root -m 0644 $src/include/linux/aufs_type.h \
    55 		$fs/usr/include/linux/aufs_type.h
    56 }
    58 # Post install/remove commands for Tazpkg.
    59 post_install()
    60 {
    61 	echo "Processing post-install commands..."
    62 	chroot "$root/" depmod -a ${EXTRAVERSION#_}-slitaz64
    63 }
    65 post_remove()
    66 {
    67 	echo "Processing post-remove commands..."
    68 	chroot "$root/" depmod -a ${EXTRAVERSION#_}-slitaz64
    69 }