diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 23:05:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-05-18 23:05:34 +0000 |
commit | ee56e013cfb6304f66129afee7978b0864699419 (patch) | |
tree | 367b176fc97757fea9322871d8aaf629239e2038 /include | |
parent | 5599502a550a7f892d4b73dceb2105a6916f83e6 (diff) | |
download | busybox-w32-ee56e013cfb6304f66129afee7978b0864699419.tar.gz busybox-w32-ee56e013cfb6304f66129afee7978b0864699419.tar.bz2 busybox-w32-ee56e013cfb6304f66129afee7978b0864699419.zip |
swapon: optional -p PRIO support (by Francois Barel <frabar666 AT gmail.com>)
function old new delta
swap_on_off_main 153 216 +63
packed_usage 24190 24214 +24
swap_enable_disable 127 131 +4
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/0 up/down: 91/0) Total: 91 bytes
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index 56198cfa5..d5c53a255 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -3809,11 +3809,14 @@ | |||
3809 | "\n -a Stop swapping on all swap devices" \ | 3809 | "\n -a Stop swapping on all swap devices" \ |
3810 | 3810 | ||
3811 | #define swapon_trivial_usage \ | 3811 | #define swapon_trivial_usage \ |
3812 | "[-a] [DEVICE]" | 3812 | "[-a]" USE_FEATURE_SWAPON_PRI(" [-p pri]") " [DEVICE]" |
3813 | #define swapon_full_usage "\n\n" \ | 3813 | #define swapon_full_usage "\n\n" \ |
3814 | "Start swapping on DEVICE\n" \ | 3814 | "Start swapping on DEVICE\n" \ |
3815 | "\nOptions:" \ | 3815 | "\nOptions:" \ |
3816 | "\n -a Start swapping on all swap devices" \ | 3816 | "\n -a Start swapping on all swap devices" \ |
3817 | USE_FEATURE_SWAPON_PRI( \ | ||
3818 | "\n -p pri Set swap device priority" \ | ||
3819 | ) \ | ||
3817 | 3820 | ||
3818 | #define switch_root_trivial_usage \ | 3821 | #define switch_root_trivial_usage \ |
3819 | "[-c /dev/console] NEW_ROOT NEW_INIT [ARGUMENTS_TO_INIT]" | 3822 | "[-c /dev/console] NEW_ROOT NEW_INIT [ARGUMENTS_TO_INIT]" |