diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-03-30 09:08:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-03-30 09:08:58 +0000 |
commit | 1236631700ba5e8f00d20c848cc425257c21f531 (patch) | |
tree | 5ae21af9774c93bca57613c8520f4593cbde89ef /util-linux/Config.in | |
parent | 75eb90f28882ca26cdb0af190ae9986720b26467 (diff) | |
download | busybox-w32-1236631700ba5e8f00d20c848cc425257c21f531.tar.gz busybox-w32-1236631700ba5e8f00d20c848cc425257c21f531.tar.bz2 busybox-w32-1236631700ba5e8f00d20c848cc425257c21f531.zip |
The fdisk llseek junk was redundant, since both uClibc and glibc
automatically promote lseek and friends to their 64 bit counterparts
when CONFIG_LFS is enabled, since it enables __USE_FILE_OFFSET64
Diffstat (limited to 'util-linux/Config.in')
-rw-r--r-- | util-linux/Config.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util-linux/Config.in b/util-linux/Config.in index c97e5c436..6972591cc 100644 --- a/util-linux/Config.in +++ b/util-linux/Config.in | |||
@@ -74,14 +74,13 @@ config CONFIG_FDISK | |||
74 | can be used to list and edit the set of partitions or BSD style | 74 | can be used to list and edit the set of partitions or BSD style |
75 | 'disk slices' that are defined on a hard drive. | 75 | 'disk slices' that are defined on a hard drive. |
76 | 76 | ||
77 | if !CONFIG_LFS | ||
78 | config FDISK_SUPPORT_LARGE_DISKS | 77 | config FDISK_SUPPORT_LARGE_DISKS |
79 | bool " support over 4GB disks" | 78 | bool " support over 4GB disks" |
80 | default y | 79 | default y |
81 | depends on CONFIG_FDISK | 80 | depends on CONFIG_FDISK |
81 | select CONFIG_LFS | ||
82 | help | 82 | help |
83 | Enable this option to support large disks > 4GB. | 83 | Enable this option to support large disks > 4GB. |
84 | endif | ||
85 | 84 | ||
86 | config CONFIG_FEATURE_FDISK_WRITABLE | 85 | config CONFIG_FEATURE_FDISK_WRITABLE |
87 | bool " Write support" | 86 | bool " Write support" |