Lines Matching refs:shell_print
54 shell_print(sh, "crc [options..] <address> <size>"); in usage()
55 shell_print(sh, "options:"); in usage()
56 shell_print(sh, "-f This is the first packet"); in usage()
57 shell_print(sh, "-l This is the last packet"); in usage()
58 shell_print(sh, "-p <poly> Use polynomial 'poly'"); in usage()
59 shell_print(sh, "-r Reflect"); in usage()
60 shell_print(sh, "-s <seed> Use 'seed' as the initial value"); in usage()
61 shell_print(sh, "-t <type> Compute the CRC described by 'type'"); in usage()
62 shell_print(sh, "Note: some options are only useful for certain CRCs"); in usage()
63 shell_print(sh, "CRC Types:"); in usage()
65 shell_print(sh, "%s", crc_types[i]); in usage()
143 shell_print(sh, "0x%x", crc_by_type(type, addr, size, seed, poly, reflect, first, last)); in cmd_crc()