diff options
author | Ron Yorston <rmy@pobox.com> | 2022-02-10 13:18:18 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-02-10 13:43:54 +0000 |
commit | e6238530e486d3c4bfe5cab7df5545869ab139ad (patch) | |
tree | 685297ca4d627d96f025f01491f162cdb392e54a /Config.in | |
parent | 104fd2e186db21df3e93ed5a4db9a7623b70d46f (diff) | |
download | busybox-w32-e6238530e486d3c4bfe5cab7df5545869ab139ad.tar.gz busybox-w32-e6238530e486d3c4bfe5cab7df5545869ab139ad.tar.bz2 busybox-w32-e6238530e486d3c4bfe5cab7df5545869ab139ad.zip |
cpio: code shrink with !FEATURE_EXTRA_FILE_DATA
The new --renumber-inodes option won't work if FEATURE_EXTRA_FILE_DATA
is disabled. Don't allow it to be selected in that case. In fact,
if FEATURE_EXTRA_FILE_DATA is disabled all the code to handle hardlinks
can be #ifdef'ed out.
The new --ignore-devno option need do nothing if FEATURE_EXTRA_FILE_DATA
is disabled, as in that case the device ids will already be zero.
It can still be selected, cpio will just always behave as though the
option was provided on the command line.
This doesn't affect the size of the default build.
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -481,7 +481,7 @@ config FEATURE_IMPROVED_COLOUR_MAPPING | |||
481 | Windows console colours. | 481 | Windows console colours. |
482 | 482 | ||
483 | config FEATURE_EXTRA_FILE_DATA | 483 | config FEATURE_EXTRA_FILE_DATA |
484 | bool "Read additional file metadata (2.1 kb)" | 484 | bool "Read additional file metadata (2.7 kb)" |
485 | default y | 485 | default y |
486 | depends on PLATFORM_MINGW32 | 486 | depends on PLATFORM_MINGW32 |
487 | help | 487 | help |