You are not logged in.
Pages: 1
Hello
I was creating a package for lufs last day, with the following PKGBUILD:
# Maintainer: Luiz Ribeiro <luizribeiro@gmail.com>
pkgname=lufs
pkgver=0.9.7
pkgrel=1
pkgdesc="LUFS is a hybrid userspace filesystem framework supporting many 'exotic' filesystems (localfs, sshfs, ftpfs, gnutellafs, locasefs, gvfs, cardfs, cefs, etc. )."
backup=()
url="http://lufs.sourceforge.net/"
depends=('gcc' 'bash')
license="GPL"
source=(http://ufpr.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('23f58fe232254a65df6eb4736a81d524')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr
make || return 1
make prefix=$startdir/pkg/usr install
}
It works ok, but the problem comes with the module (which has been built as /var/abs/local/lufs/src/lufs-0.9.7/kernel/Linux/2.6/lufs.ko) loading:
[root@room 2.6]# insmod lufs.ko
insmod: error inserting 'lufs.ko': -1 Unknown symbol in module
Anyone knows what's going on? I'm using kernel 2.6.11.10-ARCH...
(The PKGBUILD doesn't install the lufs.ko module yet, it will when the module build works ok heh)
Thanks in advice...
Offline
Pages: 1