wok-next diff linux64-netfilter/receipt @ rev 16962
linux/bootloader.sh: fix multi initrd case
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jul 30 12:25:06 2014 +0200 (2014-07-30) |
parents | 5ca86f3045d4 |
children | 889f25f00105 |
line diff
1.1 --- a/linux64-netfilter/receipt Thu Jan 30 21:56:31 2014 +0100 1.2 +++ b/linux64-netfilter/receipt Wed Jul 30 12:25:06 2014 +0200 1.3 @@ -15,18 +15,18 @@ 1.4 genpkg_rules() 1.5 { 1.6 local path 1.7 - _pkg=$install/linux64 1.8 + install=$install/linux64 1.9 path=lib/modules/$VERSION-slitaz/kernel 1.10 mkdir -p $fs/$path 1.11 1.12 export src 1.13 - export _pkg 1.14 + export install 1.15 1.16 $wanted_stuff/list_modules.sh net/netfilter net/ipv4/netfilter net/8021q | \ 1.17 while read module; do 1.18 dir=$path/$(dirname $module) 1.19 [ -d $fs/$dir ] || mkdir -p $fs/$dir 1.20 - cp -a $_pkg/$path/$module $fs/$dir 1.21 + cp -a $install/$path/$module $fs/$dir 1.22 done 1.23 rm -rf $fs/$path/net/ipv6 2> /dev/null 1.24