Skip to content

Commit

Permalink
update the help text
Browse files Browse the repository at this point in the history
  • Loading branch information
HikariKnight authored and HikariKnight committed Mar 10, 2023
1 parent 8bb0bbc commit de7b8d3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/params/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ func NewParams() *Params {
Help: "List all Network controllers.",
})

related := parser.FlagCounter("r", "related", &argparse.Options{
iommu_group := parser.IntList("i", "group", &argparse.Options{
Required: false,
Help: "Attempt to list related devices that share Vendor ID or\n\t\t IOMMU Groups (used with -g -u -i and -n), pass -rr if you want to search using both when used with -g -i or -n\n\t\t Note: -rr can be inaccurate or too broad when many devices share Vendor ID",
Help: "List everything in the IOMMU groups given. Supply argument multiple times to list additional groups.",
})

ignore := parser.StringList("R", "ignore", &argparse.Options{
related := parser.FlagCounter("r", "related", &argparse.Options{
Required: false,
Help: "Ignores passed VendorID (Left part of : in [VendorID:DeviceID]) when doing a --related search, you can use this to ignore unreliable Vendor IDs when doing related searches.",
Help: "Attempt to list related devices that share Vendor ID or\n\t\t IOMMU Groups (used with -g -u -i and -n), pass -rr if you want to search using both when used with -g -i or -n\n\t\t Note: -rr can be inaccurate or too broad when many devices share Vendor ID",
})

iommu_group := parser.IntList("i", "group", &argparse.Options{
ignore := parser.StringList("R", "ignore", &argparse.Options{
Required: false,
Help: "List everything in the IOMMU groups given. Supply argument multiple times to list additional groups.",
Help: "Ignores passed VendorID (Left part of : in [VendorID:DeviceID]) outside of the selected IOMMU group when doing a --related search, you can use this to ignore unreliable Vendor IDs when doing related searches. (works with -g -u -i and -n)",
})

kernelmodules := parser.Flag("k", "kernel", &argparse.Options{
Expand Down

0 comments on commit de7b8d3

Please sign in to comment.