1comment "aufs-util needs a linux kernel and a toolchain w/ threads" 2 depends on BR2_USE_MMU 3 depends on !BR2_LINUX_KERNEL || !BR2_TOOLCHAIN_HAS_THREADS 4 5config BR2_PACKAGE_AUFS_UTIL 6 bool "aufs-util" 7 depends on BR2_USE_MMU 8 depends on BR2_LINUX_KERNEL 9 depends on BR2_TOOLCHAIN_HAS_THREADS 10 help 11 Aufs command line utilities. 12 13 Needs a kernel with aufs support. A kernel 14 extension package is available. 15 16 http://sourceforge.net/p/aufs/aufs-util/ 17 18if BR2_PACKAGE_AUFS_UTIL 19 20config BR2_PACKAGE_AUFS_UTIL_VERSION 21 string "aufs-util version" 22 default "" 23 help 24 The version you choose must match that of the aufs support 25 in your kernel. Usually, this is aufs3.x for 3.x kernels and 26 aufs4.x for 4.x kernels. 27 28 Usually, the sha1 of the cset you want to use; avoid using a 29 branch name as this yields non-reproducible builds. 30 31 See the following resources to see what versions are 32 available: 33 34 https://sourceforge.net/p/aufs/aufs-util/ci/master/tree/ 35 36endif 37