wok-6.x diff linux64-aufs/receipt @ rev 24206
updated perl-fcgi (0.79 -> 0.82)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Dec 31 15:35:08 2021 +0100 (2021-12-31) |
parents | 97e141edc8c2 |
children | ff81f50dca78 |
line diff
1.1 --- a/linux64-aufs/receipt Sun Jul 11 14:26:24 2021 +0000 1.2 +++ b/linux64-aufs/receipt Fri Dec 31 15:35:08 2021 +0100 1.3 @@ -18,9 +18,24 @@ 1.4 1.5 AUFS_NOT_RAMFS="uclibc-cross-compiler-x86_64 is not compatible with aufs+tmpfs 8(" 1.6 1.7 +current_version() 1.8 +{ 1.9 + wget -O - https://sourceforge.net/p/aufs/aufs3-standalone/ci/${BRANCH#*linux-}/tree/ 2> /dev/null | \ 1.10 + sed '/History/!d;s|.*href="|https://sourceforge.net|;s|".*||' | xargs wget -O - 2> /dev/null | \ 1.11 + sed '/markdown_content/!d;s|</p>||;s|.* ||;q' 1.12 +} 1.13 + 1.14 # Rules to configure and make the package. 1.15 compile_rules() 1.16 { 1.17 + # Must match kernel version 1.18 + #[ -d fs ] && rm -rf * 1.19 + 1.20 + if [ ! -d fs ]; then 1.21 + kver=$(. $WOK/linux/receipt ; echo $VERSION) 1.22 + git checkout origin/aufs${kver%.*} 1.23 + fi 1.24 + 1.25 sed -i \ 1.26 -e 's|CONFIG_AUFS_BRANCH_MAX_127 =.*|CONFIG_AUFS_BRANCH_MAX_127 =|' \ 1.27 -e 's|#CONFIG_AUFS_BRANCH_MAX_32767 =.*|CONFIG_AUFS_BRANCH_MAX_32767 = y|' \