/openbmc/openbmc/poky/meta/recipes-support/boost/boost/ |
H A D | 0001-Don-t-set-up-arch-instruction-set-flags-we-do-that-o.patch | 25 -# Set architecture/instruction-set options. 30 -toolset.flags gcc OPTIONS <architecture>x86/<address-model>32/<instruction-set> : -march=i686 ; 31 -cpu-flags gcc OPTIONS : x86 : native : -march=native ; 32 -cpu-flags gcc OPTIONS : x86 : i486 : -march=i486 ; 33 -cpu-flags gcc OPTIONS : x86 : i586 : -march=i586 ; 34 -cpu-flags gcc OPTIONS : x86 : i686 : -march=i686 ; 35 -cpu-flags gcc OPTIONS : x86 : pentium : -march=pentium ; 36 -cpu-flags gcc OPTIONS : x86 : pentium-mmx : -march=pentium-mmx ; 37 -cpu-flags gcc OPTIONS : x86 : pentiumpro : -march=pentiumpro ; 38 -cpu-flags gcc OPTIONS : x86 : pentium2 : -march=pentium2 ; [all …]
|
/openbmc/u-boot/tools/buildman/ |
H A D | control.py | 25 def GetActionSummary(is_summary, commits, selected, options): argument 33 count = (count + options.step - 1) / options.step 40 str += ' (%d thread%s, %d job%s per thread)' % (options.threads, 41 GetPlural(options.threads), options.jobs, GetPlural(options.jobs)) 44 def ShowActions(series, why_selected, boards_selected, builder, options, argument 58 options: Command line options object 69 options) 72 for upto in range(0, len(series.commits), options.step): 80 if options.verbose: 110 def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, argument [all …]
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-protocols/rp-pppoe/rp-pppoe/ |
H A D | pppoe-server.init | 8 OPTIONS="" 10 OPTIONS="$OPTIONS -m $MSS" 14 OPTIONS="$OPTIONS -I $i" 18 OPTIONS="$OPTIONS -L $LOCAL_IP" 21 OPTIONS="$OPTIONS -R $REMOTE_IP" 24 OPTIONS="$OPTIONS -S $SERVICE_NAME" 27 OPTIONS="$OPTIONS -N $MAX_SESSIONS" 30 OPTIONS="$OPTIONS -C $ACCESS_CONCENTRATOR_NAME" 33 start-stop-daemon --start --quiet --exec /usr/sbin/pppoe-server -- $OPTIONS 38 start-stop-daemon --stop --quiet --exec /usr/sbin/pppoe-server -- $OPTIONS
|
/openbmc/u-boot/tools/patman/ |
H A D | patman | 76 # Parse options twice: first to get the project and second to handle 78 (options, args) = parser.parse_args() 79 settings.Setup(parser, options.project, '') 80 (options, args) = parser.parse_args() 86 elif options.test: 109 elif options.cc_cmd: 110 fd = open(options.cc_cmd, 'r') 121 elif options.full_help: 133 if options.count == -1: 135 options.count = gitutil.CountCommitsToBranch() - options.start [all …]
|
H A D | patman.py | 76 # Parse options twice: first to get the project and second to handle 78 (options, args) = parser.parse_args() 79 settings.Setup(parser, options.project, '') 80 (options, args) = parser.parse_args() 86 elif options.test: 109 elif options.cc_cmd: 110 fd = open(options.cc_cmd, 'r') 121 elif options.full_help: 133 if options.count == -1: 135 options.count = gitutil.CountCommitsToBranch() - options.start [all …]
|
/openbmc/u-boot/tools/binman/ |
H A D | control.py | 67 def Binman(options, args): argument 70 This assumes that help and test options have already been dealt with. It 74 options: Command line options object 79 if options.full_help: 89 if options.dt: 90 dtb_fname = options.dt 92 board = options.board 95 board_pathname = os.path.join(options.build_dir, board) 97 if not options.indir: 98 options.indir = ['.'] [all …]
|
H A D | binman | 116 options.build_dir, all_set) 118 def RunBinman(options, args): argument 122 options: Command-line options 128 #options.debug = True 130 if not options.debug: 133 if options.test: 134 ret_code = RunTests(options.debug, options.processes, args[1:]) 136 elif options.test_coverage: 139 elif options.entry_docs: 144 ret_code = control.Binman(options, args) [all …]
|
H A D | binman.py | 116 options.build_dir, all_set) 118 def RunBinman(options, args): argument 122 options: Command-line options 128 #options.debug = True 130 if not options.debug: 133 if options.test: 134 ret_code = RunTests(options.debug, options.processes, args[1:]) 136 elif options.test_coverage: 139 elif options.entry_docs: 144 ret_code = control.Binman(options, args) [all …]
|
/openbmc/qemu/net/ |
H A D | vmnet-host.c | 23 const NetdevVmnetHostOptions *options = &(netdev->u.vmnet_host); in validate_options() local 26 if (options->net_uuid && in validate_options() 27 qemu_uuid_parse(options->net_uuid, &net_uuid) < 0) { in validate_options() 32 if ((options->start_address || in validate_options() 33 options->end_address || in validate_options() 34 options->subnet_mask) && in validate_options() 35 !(options->start_address && in validate_options() 36 options->end_address && in validate_options() 37 options->subnet_mask)) { in validate_options() 49 const NetdevVmnetHostOptions *options = &(netdev->u.vmnet_host); in build_if_desc() local [all …]
|
H A D | vmnet-shared.c | 22 const NetdevVmnetSharedOptions *options = &(netdev->u.vmnet_shared); in validate_options() local 24 if ((options->start_address || in validate_options() 25 options->end_address || in validate_options() 26 options->subnet_mask) && in validate_options() 27 !(options->start_address && in validate_options() 28 options->end_address && in validate_options() 29 options->subnet_mask)) { in validate_options() 42 const NetdevVmnetSharedOptions *options = &(netdev->u.vmnet_shared); in build_if_desc() local 51 if (options->nat66_prefix) { in build_if_desc() 54 options->nat66_prefix); in build_if_desc() [all …]
|
/openbmc/openbmc/poky/scripts/pybootchartgui/pybootchartgui/ |
H A D | main.py | 27 """Make an options parser.""" 28 usage = "%prog [options] /path/to/tmp/buildstats/<recipe-machine>/<BUILDNAME>/" 71 def __init__(self, write, options): argument 73 self.options = options 79 if not self.options.quiet: 83 if self.options.verbose: 87 if not self.options.quiet: 90 def _mk_writer(options): argument 93 return Writer(write, options) 112 options, args = parser.parse_args(argv) [all …]
|
H A D | main.py.in | 27 """Make an options parser.""" 28 usage = "%prog [options] /path/to/tmp/buildstats/<recipe-machine>/<BUILDNAME>/" 71 def __init__(self, write, options): argument 73 self.options = options 79 if not self.options.quiet: 83 if self.options.verbose: 87 if not self.options.quiet: 90 def _mk_writer(options): argument 93 return Writer(write, options) 112 options, args = parser.parse_args(argv) [all …]
|
/openbmc/qemu/qapi/ |
H A D | audio.json | 18 # General audio backend options that are used for both playback and 57 # Generic driver-specific options. 59 # @in: options of the capture stream 61 # @out: options of the playback stream 73 # Options of the D-Bus audio backend. 75 # @in: options of the capture stream 77 # @out: options of the playback stream 93 # Options of the ALSA backend that are used for both playback and 115 # Options of the ALSA audio backend. 117 # @in: options of the capture stream [all …]
|
/openbmc/u-boot/drivers/crypto/fsl/ |
H A D | desc_constr.h | 88 static inline void init_desc(u32 *desc, u32 options) in init_desc() argument 90 *desc = (options | HDR_ONE) + 1; in init_desc() 93 static inline void init_job_desc(u32 *desc, u32 options) in init_job_desc() argument 95 init_desc(desc, CMD_DESC_HDR | options); in init_job_desc() 98 static inline void init_job_desc_pdb(u32 *desc, u32 options, size_t pdb_bytes) in init_job_desc_pdb() argument 104 options); in init_job_desc_pdb() 188 static inline u32 *append_##cmd(u32 *desc, u32 options) \ 192 append_cmd(desc, CMD_##op | options); \ 211 static inline void append_##cmd(u32 *desc, u32 options) \ 214 append_cmd(desc, CMD_##op | options); \ [all …]
|
/openbmc/openbmc/poky/bitbake/bin/ |
H A D | bitbake-diffsigs | 151 options = parser.parse_args() variable 153 options.color = 'never' 154 options.dump = True 155 options.sigdatafile2 = None 156 options.sigargs = None 158 if options.debug: 161 color = (options.color == 'always' or (options.color == 'auto' and sys.stdout.isatty())) 163 if options.taskargs: 166 if not options.dump and options.sigargs: 167 … files = find_siginfo_task(tinfoil, options.taskargs[0], options.taskargs[1], options.sigargs[0], [all …]
|
H A D | bitbake-dumpsig | 151 options = parser.parse_args() variable 153 options.color = 'never' 154 options.dump = True 155 options.sigdatafile2 = None 156 options.sigargs = None 158 if options.debug: 161 color = (options.color == 'always' or (options.color == 'auto' and sys.stdout.isatty())) 163 if options.taskargs: 166 if not options.dump and options.sigargs: 167 … files = find_siginfo_task(tinfoil, options.taskargs[0], options.taskargs[1], options.sigargs[0], [all …]
|
/openbmc/linux/drivers/tty/serial/ |
D | earlycon.c |
|
/openbmc/u-boot/tools/ |
H A D | moveconfig.py | 8 Move config options from headers to defconfig files. 11 config options from headers to Kconfig (defconfig). 87 defconfig. The config options defined in Kconfig appear in the .config 89 On the other hand, the config options defined by board headers are seen 90 in include/autoconf.mk. The tool looks for the specified options in both 91 of them to decide the appropriate action for the options. If the given 133 Some CONFIG options can be implied by others and this can help to reduce 175 This shows a list of config options which might imply CONFIG_CMD_EEPROM along 186 That will cover 20 defconfigs. Many of the options listed are not suitable as 198 This will add 'imply SCSI' to the two CONFIG options mentioned, assuming that [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | jquery.cookie.js | 57 var config = $.cookie = function (key, value, options) { 61 options = $.extend({}, config.defaults, options); 63 if (typeof options.expires === 'number') { 64 var days = options.expires, t = options.expires = new Date(); 70 …options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max… 71 options.path ? '; path=' + options.path : '', 72 options.domain ? '; domain=' + options.domain : '', 73 options.secure ? '; secure' : '' 108 $.removeCookie = function (key, options) { argument 110 // Must not alter options, thus extending a fresh object... [all …]
|
/openbmc/openbmc-tools/openbmctool/ |
H A D | README.md | 10 These are passed in with the following options: 13 - `-U`: The username One of the password options: 30 openbmctool <connection options> local_users queryenabled 36 openbmctool <connection options> local_users disableall 42 openbmctool <connection options> local_users enableall 56 - <https://www.thegeekdiary.com/understanding-rsyslog-filter-options/> 61 openbmctool <connection options> logging remote_logging_config -a <IP address> -p <port> 74 openbmctool <connection options> logging remote_logging disable 84 openbmctool <connection options> logging remote_logging view 100 openbmctool <connection options> certificate update server https -f <File> [all …]
|
/openbmc/linux/tools/testing/selftests/ftrace/test.d/dynevent/ |
D | add_remove_eprobe.tc |
|
/openbmc/openbmc/poky/meta/recipes-gnome/gnome/gconf/ |
H A D | python3.patch | 29 …parser = GConfSchemaParser(argfile, options.gettext_domain, options.schema_id, options.keep_unders… 38 if not options.simple and not options.xml: 39 options.simple = True 44 if not options.simple and not options.xml: 46 fout = open(options.output, 'w') 52 if os.path.exists(options.output): 53 os.unlink(options.output)
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 206.out | 3 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 10 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "qcow2", "file… 29 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 34 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"cluster-size": 65536, "… 51 === Successful image creation (v3 non-default options) === 53 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 58 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"cluster-size": 2097152,… 75 === Successful image creation (v2 non-default options) === 77 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 82 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"backing-file": "TEST_DI… [all …]
|
H A D | 212.out | 3 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 10 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "parallels", "… 21 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 26 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"cluster-size": 1048576,… 35 === Successful image creation (with non-default options) === 37 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "file", "filen… 42 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"cluster-size": 65536, "… 53 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "parallels", "… 61 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "parallels", "… 72 {"execute": "blockdev-create", "arguments": {"job-id": "job0", "options": {"driver": "parallels", "… [all …]
|
/openbmc/linux/drivers/comedi/drivers/ |
D | dt2815.c |
|