diff options
author | Simon Dawson <spdawson@gmail.com> | 2013-11-03 09:56:25 +0000 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2013-11-11 00:41:06 +0100 |
commit | a0353409933429058e04adf8f5d3f34d33c5697c (patch) | |
tree | 0974dca01a56fa9c00217b9f6ebbb9757aad8b4e | |
parent | 13ae0075a94895c1b021d20905867ee5f354bd49 (diff) | |
download | buildroot-a0353409933429058e04adf8f5d3f34d33c5697c.tar.gz buildroot-a0353409933429058e04adf8f5d3f34d33c5697c.zip |
util-linux: disable fallocate for avr32
The fallocate syscall is not implemented in the avr32 toolchain.
Fixes build failures such as the following.
http://autobuild.buildroot.net/results/bc4/bc41a3fea20181526eb247ac910244aa2aa4c4c0/
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/util-linux/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index 41e0986eee..d56e631036 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -72,6 +72,7 @@ config BR2_PACKAGE_UTIL_LINUX_EJECT config BR2_PACKAGE_UTIL_LINUX_FALLOCATE bool "fallocate" + depends on !BR2_avr32 # fallocate not implemented help Preallocate space to a file |