diff options
author | Paul Fox <pgf@brightstareng.com> | 2005-09-22 18:59:13 +0000 |
---|---|---|
committer | Paul Fox <pgf@brightstareng.com> | 2005-09-22 18:59:13 +0000 |
commit | 28de951b022d39516de271ce0ba53560aa3c5555 (patch) | |
tree | f5924f07643c8712acb65115bd50a7aa9ddb3603 /include | |
parent | 2f9c30a2d567ba7bdb6351e0167eb0b59735b898 (diff) | |
download | busybox-28de951b022d39516de271ce0ba53560aa3c5555.tar.gz |
add support for setting the dhcp vendor class option (option 60).
udhcpc now has a -V (--vendorclass), which will replace the default
"udhcpRELEASE" string in this option.
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/usage.h b/include/usage.h index f702729e5..8b1a8d785 100644 --- a/include/usage.h +++ b/include/usage.h @@ -2998,10 +2998,11 @@ "Adjust filesystem options on ext[23] filesystems.\n\n" #define udhcpc_trivial_usage \ - "[-Cfbnqv] [-c CLIENTID] [-H HOSTNAME] [-i INTERFACE]\n[-p pidfile] [-r IP] [-s script]" + "[-Cfbnqv] [-c CID] [-V VCLS] [-H HOSTNAME] [-i INTERFACE]\n[-p pidfile] [-r IP] [-s script]" #define udhcpc_full_usage \ "\t-c,\t--clientid=CLIENTID\tSet client identifier\n" \ "\t-C,\t--clientid-none\tSuppress default client identifier\n" \ + "\t-V,\t--vendorclass=CLASSID\tSet vendor class identifier\n" \ "\t-H,\t--hostname=HOSTNAME\tClient hostname\n" \ "\t-h,\t \tAlias for -H\n" \ "\t-f,\t--foreground\tDo not fork after getting lease\n" \ |