| /OK3568_Linux_fs/buildroot/package/input-event-daemon/ |
| H A D | 0002-Support-parsing-configfile-.d-.conf.patch | 4 Subject: [PATCH 2/2] Support parsing <configfile>.d/*.conf 44 +void config_parse_file(const char *configfile) { 52 - if((config_fd = fopen(conf.configfile, "r")) == NULL) { 54 + fprintf(stderr, PROGRAM": Start parsing %s...\n", configfile); 57 + if((config_fd = fopen(configfile, "r")) == NULL) { 59 - conf.configfile, strerror(errno)); 60 + configfile, strerror(errno)); 68 - error, conf.configfile, line_num); 69 + error, configfile, line_num); 124 - conf.configfile = "/etc/input-event-daemon.conf"; [all …]
|
| H A D | 0006-Listen-all-devices-by-default.patch | 28 char path[strlen(configfile) + 3]; 30 config_parse_file(configfile);
|
| /OK3568_Linux_fs/buildroot/utils/ |
| H A D | genrandconfig | 131 configfile = row[0] 153 if not os.path.isabs(configfile): 154 configfile = os.path.join(buildrootdir, configfile) 156 with open(configfile) as r: 162 def is_toolchain_usable(configfile, config): argument 165 with open(configfile) as configf: 191 def fixup_config(sysinfo, configfile): argument 200 with open(configfile) as configf: 318 with open(configfile, "w+") as configf: 389 configfile = os.path.join(args.buildrootdir, ".config") [all …]
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/plugins/source/ |
| H A D | bootimg-efi.py | 42 configfile = creator.ks.bootloader.configfile 44 if configfile: 45 custom_cfg = get_custom_config(configfile) 50 "%s for grub.cfg", configfile) 53 "get it from %s." % configfile) 148 configfile = creator.ks.bootloader.configfile 150 if configfile: 151 custom_cfg = get_custom_config(configfile) 156 "%s for systemd-boots's boot.conf", configfile) 159 "get it from %s.", configfile)
|
| H A D | bootimg-partition.py | 105 configfile = cr.ks.bootloader.configfile 107 if configfile: 108 custom_cfg = get_custom_config(configfile) 113 "%s for extlinux.cfg", configfile) 116 "get it from %s." % configfile)
|
| H A D | bootimg-pcbios.py | 94 if bootloader.configfile: 95 custom_cfg = get_custom_config(bootloader.configfile) 100 "for syslinux.cfg", bootloader.configfile) 103 "get it from %s." % bootloader.configfile)
|
| H A D | isoimage-isohybrid.py | 94 configfile = creator.ks.bootloader.configfile 95 if configfile: 96 grubefi_conf = get_custom_config(configfile) 99 configfile) 102 "but failed to get it from %s", configfile)
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/bin/ |
| H A D | kvm-recheck-refscale.sh | 23 configfile=`echo $i | sed -e 's/^.*\///'` 26 awk -v configfile="$configfile" '
|
| H A D | kvm-recheck-scf.sh | 22 configfile=`echo $i | sed -e 's/^.*\///'` 26 echo "$configfile ------- " 37 echo "${configfile} ------- ${nscfs} SCF handler invocations$rate"
|
| H A D | kvm-recheck-lock.sh | 21 configfile=`echo $i | sed -e 's/^.*\///'` 25 echo "$configfile -------" 27 title="$configfile ------- $ncs acquisitions/releases"
|
| H A D | kvm-recheck.sh | 34 configfile=`echo $i | sed -e 's,^.*/,,'` 53 parse-build.sh $i/Make.out $configfile 54 parse-console.sh $i/console.log $configfile 64 parse-build.sh $i/Make.out $configfile
|
| H A D | kvm-recheck-rcu.sh | 22 configfile=`echo $i | sed -e 's/^.*\///'` 31 echo "$configfile ------- " $stopstate 33 title="$configfile ------- $ngps GPs"
|
| H A D | kvm-recheck-rcuscale.sh | 29 configfile=`echo $i | sed -e 's/^.*\///'`
|
| /OK3568_Linux_fs/kernel/tools/power/cpupower/bench/ |
| H A D | parse.c | 159 FILE *configfile; in prepare_config() local 166 configfile = fopen(path, "r"); in prepare_config() 167 if (configfile == NULL) { in prepare_config() 174 while (getline(&line, &len, configfile) != -1) { in prepare_config()
|
| H A D | README-BENCH | 118 -f, --file=<configfile> config file to use
|
| /OK3568_Linux_fs/buildroot/support/scripts/ |
| H A D | check-dotconfig.py | 15 configfile = sys.argv[1] 19 with open(configfile) as configf:
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/vpnc/vpnc/ |
| H A D | long-help | 12 (configfile only option) 16 (configfile only option) 24 (configfile only option) 28 (configfile only option)
|
| /OK3568_Linux_fs/buildroot/support/testing/infra/ |
| H A D | builder.py | 15 def is_defconfig_valid(self, configfile, defconfig): argument 17 with open(configfile) as configf:
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/canned-wks/ |
| H A D | directdisk-bootloader-config.wks | 7 bootloader --configfile="directdisk-bootloader-config.cfg"
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | cookerdata.py | 186 def findConfigFile(configfile, data): argument 191 search.append(os.path.join(i, "conf", configfile)) 194 search.append(os.path.join(path, "conf", configfile))
|
| H A D | command.py | 684 configfile = params[0] 686 command.cooker.findConfigFilePath(configfile)
|
| /OK3568_Linux_fs/buildroot/package/frr/ |
| H A D | frr.mk | 24 --enable-configfile-mask=0640 \
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/ |
| H A D | grub-efi_2.06.bb | 85 efi_gop iso9660 configfile search loadenv test"
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/openl2tp/ |
| H A D | openl2tp_1.8.bb | 87 for i in all.tcl configfile.test peer_profile.test ppp_profile.test \
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-protocols/frr/ |
| H A D | frr_8.2.2.bb | 63 --enable-configfile-mask=0640 \
|