Searched refs:subparser (Results 1 – 5 of 5) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/scripts/ |
| H A D | wic | 313 def wic_init_parser_create(subparser): argument 314 subparser.add_argument("wks_file") 316 subparser.add_argument("-o", "--outdir", dest="outdir", default='.', 318 subparser.add_argument("-w", "--workdir", 320 subparser.add_argument("-e", "--image-name", dest="image_name", 323 subparser.add_argument("-r", "--rootfs-dir", action=RootfsArgAction, 326 subparser.add_argument("-b", "--bootimg-dir", dest="bootimg_dir", 330 subparser.add_argument("-k", "--kernel-dir", dest="kernel_dir", 333 subparser.add_argument("-n", "--native-sysroot", dest="native_sysroot", 336 subparser.add_argument("-s", "--skip-build-check", dest="build_check", [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bblayers/ |
| H A D | common.py | 34 …subparser = subparsers.add_parser(cmdname, *args, help=help, description=desc, formatter_class=arg… 35 subparser.set_defaults(func=function, parserecipes=parserecipes) 36 return subparser
|
| /OK3568_Linux_fs/kernel/tools/testing/kunit/ |
| H A D | kunit.py | 214 subparser = parser.add_subparsers(dest='subcommand') 217 run_parser = subparser.add_parser('run', help='Runs KUnit tests.') 223 config_parser = subparser.add_parser('config', 228 build_parser = subparser.add_parser('build', help='Builds a kernel with KUnit tests') 232 exec_parser = subparser.add_parser('exec', help='Run a kernel with KUnit tests') 241 parse_parser = subparser.add_parser('parse',
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/ |
| H A D | argparse_oe.py | 38 subparser = action._name_parser_map[subcommand] 42 subparser.error(message) 68 subparser = self._get_subparser(args) 69 subparser.error(message)
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | data_smart.py | 810 value, subparser = self.getVarFlag(match, "_content", False, retparser=True) 811 if hasattr(subparser, "removes"): 814 removes = subparser.removes
|