Searched refs:config (Results 1 - 25 of 184) sorted by relevance

12345678

/openwrt/scripts/
H A Dkconfig.pl16 my $config = shift;
21 if (!defined($config->{$idx}) or !$mod_plus or
22 $config->{$idx} eq '#undef' or $newval eq 'y') {
23 $config->{$idx} = $newval;
30 my %config;
36 set_config(\%config, $1, $2, $mod_plus);
40 set_config(\%config, $1, "#undef", $mod_plus);
46 return \%config;
53 my %config;
55 foreach my $config (key
[all...]
H A Ddiffconfig.sh2 grep \^CONFIG_TARGET_ .config | head -n3 > tmp/.diffconfig.head
3 grep '^CONFIG_ALL=y' .config >> tmp/.diffconfig.head
4 grep '^CONFIG_ALL_KMODS=y' .config >> tmp/.diffconfig.head
5 grep '^CONFIG_ALL_NONSHARED=y' .config >> tmp/.diffconfig.head
6 grep '^CONFIG_DEVEL=y' .config >> tmp/.diffconfig.head
7 grep '^CONFIG_TOOLCHAINOPTS=y' .config >> tmp/.diffconfig.head
8 grep '^CONFIG_BUSYBOX_CUSTOM=y' .config >> tmp/.diffconfig.head
9 ./scripts/config/conf --defconfig=tmp/.diffconfig.head -w tmp/.diffconfig.stage1 Config.in >/dev/null
10 ./scripts/kconfig.pl '>+' tmp/.diffconfig.stage1 .config >> tmp/.diffconfig.head
11 ./scripts/config/con
[all...]
H A Dext-toolchain.sh284 local config="${0%/scripts/*}/.config"
290 "${0%/*}/scripts/config/mconf" prepare-tmpinfo
317 # bail out if there is a .config already
318 if [ -f "${0%/scripts/*}/.config" ]; then
319 echo "There already is a .config file, refusing to overwrite!" >&2
329 echo "CONFIG_TARGET_${mktarget}=y" > "$config"
332 echo "CONFIG_TARGET_${mktarget}_${mksubtarget}=y" >> "$config"
336 echo "CONFIG_SOFT_FLOAT=y" >> "$config"
338 echo "# CONFIG_SOFT_FLOAT is not set" >> "$config"
[all...]
/openwrt/package/system/procd/files/
H A Dreload_config2 rm -rf /var/run/config.check
3 mkdir -p /var/run/config.check
4 for config in /etc/config/*; do
5 file=${config##*/}
6 uci show "${file##*/}" > /var/run/config.check/$file
8 MD5FILE=/var/run/config.md5
11 ubus call service event "{ \"type\": \"config.change\", \"data\": { \"package\": \"$(basename $c)\" }}"
14 md5sum /var/run/config.check/* > $MD5FILE
15 rm -rf /var/run/config
[all...]
/openwrt/package/network/config/netifd/files/lib/network/
H A Dconfig.sh39 local config="$1"
42 config_get type "$config" type
43 config_get ifname "$config" ifname
44 config_get device "$config" device "$ifname"
45 [ "bridge" = "$type" ] && ifname="br-$config"
46 config_set "$config" device "$ifname"
47 ubus_call "network.interface.$config" status || return 0
51 config_set "$config" ifname "$ifname"
52 config_set "$config" device "$device"
61 local config
[all...]
/openwrt/package/utils/admswconfig/files/
H A Dadmswconfig7 [ -e /etc/config/network ] && exit 0
9 mkdir -p /etc/config
38 print "config switch"
44 print "config interface loopback"
52 print "config interface lan"
62 print "config interface wan"
66 }' > /etc/config/network
/openwrt/package/network/services/wireguard/files/
H A Dwireguard.sh101 local config="$1"
103 local wg_cfg="${wg_dir}/${config}"
111 config_get private_key "${config}" "private_key"
112 config_get listen_port "${config}" "listen_port"
113 config_get addresses "${config}" "addresses"
114 config_get mtu "${config}" "mtu"
115 config_get fwmark "${config}" "fwmark"
118 ip link del dev "${config}" 2>/dev/null
119 ip link add dev "${config}" type wireguard
122 ip link set mtu "${mtu}" dev "${config}"
[all...]
/openwrt/package/boot/uboot-envtools/files/
H A Dipq6 [ -e /etc/config/ubootenv ] && exit 0
8 touch /etc/config/ubootenv
H A Dkirkwood6 [ -e /etc/config/ubootenv ] && exit 0
8 touch /etc/config/ubootenv
H A Doxnas6 [ -e /etc/config/ubootenv ] && exit 0
8 touch /etc/config/ubootenv
H A Dmxs6 [ -e /etc/config/ubootenv ] && exit 0
8 touch /etc/config/ubootenv
/openwrt/target/linux/socfpga/base-files/etc/uci-defaults/
H A D02_network6 [ -e /etc/config/network ] && exit 0
8 touch /etc/config/network
/openwrt/target/sdk/
H A Dconvert-config.pl5 config ALL
36 config $var
/openwrt/target/linux/socfpga/
H A Dbase-files.mk2 rm -f $(1)/etc/config/network
/openwrt/target/linux/zynq/
H A Dbase-files.mk2 rm -f $(1)/etc/config/network
/openwrt/tools/pkg-config/files/
H A Dpkg-config3 pkg-config.real $@ --define-variable=prefix=${STAGING_PREFIX} --define-variable=exec_prefix=${STAGING_PREFIX}
/openwrt/package/network/config/gre/
H A DMakefile25 TITLE:=Generic Routing Encapsulation config support
29 Generic Routing Encapsulation config support (IPv4 and IPv6) in /etc/config/network.
34 TITLE:=Generic Routing Encapsulation (IPv4) config support
39 Generic Routing Encapsulation config support (IPv4) in /etc/config/network.
44 TITLE:=Generic Routing Encapsulation (IPv6) config support
49 Generic Routing Encapsulation config support (IPv6) in /etc/config/network.
/openwrt/package/boot/uboot-ar71xx/files/board/zyxel/nbg460n/
H A Dlowlevel_init.S24 #include <config.h>
/openwrt/include/
H A Dtoplevel.mk61 .config scripts/config/conf scripts/config/mconf: staging_dir/host/.prereq-build
85 f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \
88 [ tmp/.config-feeds.in -nt tmp/.packagesubdirs ] || ./scripts/feeds feed_config > tmp/.config-feeds.in
93 .config: ./scripts/config/conf $(if $(CONFIG_HAVE_DOT_CONFIG),,prepare-tmpinfo)
94 @+if [ \! -e .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/de
[all...]
H A Dkernel-defaults.mk73 grep -v -e INITRAMFS -e CONFIG_RD_ -e CONFIG_BLK_DEV_INITRD $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config
74 echo 'CONFIG_BLK_DEV_INITRD=y' >> $(LINUX_DIR)/.config
75 echo 'CONFIG_INITRAMFS_SOURCE="$(strip $(TARGET_DIR) $(INITRAMFS_EXTRA_FILES))"' >> $(LINUX_DIR)/.config
79 grep -v INITRAMFS $(LINUX_DIR)/.config.old > $(LINUX_DIR)/.config
80 echo 'CONFIG_INITRAMFS_SOURCE="$(call qstrip,$(CONFIG_EXTERNAL_CPIO))"' >> $(LINUX_DIR)/.config
85 rm -f $(LINUX_DIR)/.config.prev
86 mv $(LINUX_DIR)/.config $(LINUX_DIR)/.config
[all...]
/openwrt/package/base-files/files/bin/
H A Dboard_detect11 [ -f "/etc/config/network" ] || {
12 touch /etc/config/network
/openwrt/package/network/services/dnsmasq/files/
H A Ddhcp.conf0 config dnsmasq
24 config dhcp lan
30 config dhcp wan
/openwrt/package/kernel/mmc_over_gpio/
H A DMakefile26 define Package/kmod-mmc-over-gpio/config
30 config KMOD_MMC_OVER_GPIO_DI_PIN
34 config KMOD_MMC_OVER_GPIO_DO_PIN
38 config KMOD_MMC_OVER_GPIO_CLK_PIN
42 config KMOD_MMC_OVER_GPIO_CS_PIN
54 /etc/config/mmc_over_gpio
65 $(INSTALL_DIR) $(1)/etc/config
66 $(INSTALL_DATA) ./files/mmc_over_gpio.config $(1)/etc/config/mmc_over_gpio
74 $(1)/etc/config/mmc_over_gpi
[all...]
/openwrt/package/network/config/vti/
H A DMakefile25 TITLE:=Virtual IPsec Tunnel Interface config support
29 Virtual IPsec Tunnel Interface config support (IPv4 and IPv6) in /etc/config/network.
34 TITLE:=Virtual IPsec Tunnel Interface (IPv4) config support
39 Virtual IPsec Tunnel Interface config support (IPv4) in /etc/config/network.
44 TITLE:=Virtual IPsec Tunnel Interface (IPv6) config support
49 Virtual IPsec Tunnel Interface config support (IPv6) in /etc/config/network.
/openwrt/tools/pkg-config/
H A DMakefile9 PKG_NAME:=pkg-config
30 mv $(STAGING_DIR_HOST)/bin/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config.real
31 $(INSTALL_BIN) ./files/pkg-config $(STAGING_DIR_HOST)/bin/pkg-config

Completed in 111 milliseconds

12345678