# DO NOT EDIT. This file is generated from Config.src # # For a description of the syntax of this configuration file, # see docs/Kconfig-language.txt. # menu "Finding Utilities" config BUSYBOX_CONFIG_FIND bool "find (14 kb)" default BUSYBOX_DEFAULT_FIND help find is used to search your system to find specified files. config BUSYBOX_CONFIG_FEATURE_FIND_PRINT0 bool "Enable -print0: NUL-terminated output" default BUSYBOX_DEFAULT_FEATURE_FIND_PRINT0 depends on BUSYBOX_CONFIG_FIND help Causes output names to be separated by a NUL character rather than a newline. This allows names that contain newlines and other whitespace to be more easily interpreted by other programs. config BUSYBOX_CONFIG_FEATURE_FIND_MTIME bool "Enable -mtime: modified time matching" default BUSYBOX_DEFAULT_FEATURE_FIND_MTIME depends on BUSYBOX_CONFIG_FIND help Allow searching based on the modification time of files, in days. config BUSYBOX_CONFIG_FEATURE_FIND_MMIN bool "Enable -mmin: modified time matching by minutes" default BUSYBOX_DEFAULT_FEATURE_FIND_MMIN depends on BUSYBOX_CONFIG_FIND help Allow searching based on the modification time of files, in minutes. config BUSYBOX_CONFIG_FEATURE_FIND_PERM bool "Enable -perm: permissions matching" default BUSYBOX_DEFAULT_FEATURE_FIND_PERM depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_TYPE bool "Enable -type: file type matching (file/dir/link/...)" default BUSYBOX_DEFAULT_FEATURE_FIND_TYPE depends on BUSYBOX_CONFIG_FIND help Enable searching based on file type (file, directory, socket, device, etc.). config BUSYBOX_CONFIG_FEATURE_FIND_EXECUTABLE bool "Enable -executable: file is executable" default BUSYBOX_DEFAULT_FEATURE_FIND_EXECUTABLE depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_XDEV bool "Enable -xdev: 'stay in filesystem'" default BUSYBOX_DEFAULT_FEATURE_FIND_XDEV depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_MAXDEPTH bool "Enable -mindepth N and -maxdepth N" default BUSYBOX_DEFAULT_FEATURE_FIND_MAXDEPTH depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_NEWER bool "Enable -newer: compare file modification times" default BUSYBOX_DEFAULT_FEATURE_FIND_NEWER depends on BUSYBOX_CONFIG_FIND help Support the 'find -newer' option for finding any files which have modification time that is more recent than the specified FILE. config BUSYBOX_CONFIG_FEATURE_FIND_INUM bool "Enable -inum: inode number matching" default BUSYBOX_DEFAULT_FEATURE_FIND_INUM depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_EXEC bool "Enable -exec: execute commands" default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC depends on BUSYBOX_CONFIG_FIND help Support the 'find -exec' option for executing commands based upon the files matched. config BUSYBOX_CONFIG_FEATURE_FIND_EXEC_PLUS bool "Enable -exec ... {} +" default BUSYBOX_DEFAULT_FEATURE_FIND_EXEC_PLUS depends on BUSYBOX_CONFIG_FEATURE_FIND_EXEC help Support the 'find -exec ... {} +' option for executing commands for all matched files at once. Without this option, -exec + is a synonym for -exec ; (IOW: it works correctly, but without expected speedup) config BUSYBOX_CONFIG_FEATURE_FIND_USER bool "Enable -user: username/uid matching" default BUSYBOX_DEFAULT_FEATURE_FIND_USER depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_GROUP bool "Enable -group: group/gid matching" default BUSYBOX_DEFAULT_FEATURE_FIND_GROUP depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_NOT bool "Enable the 'not' (!) operator" default BUSYBOX_DEFAULT_FEATURE_FIND_NOT depends on BUSYBOX_CONFIG_FIND help Support the '!' operator to invert the test results. If 'Enable full-blown desktop' is enabled, then will also support the non-POSIX notation '-not'. config BUSYBOX_CONFIG_FEATURE_FIND_DEPTH bool "Enable -depth" default BUSYBOX_DEFAULT_FEATURE_FIND_DEPTH depends on BUSYBOX_CONFIG_FIND help Process each directory's contents before the directory itself. config BUSYBOX_CONFIG_FEATURE_FIND_PAREN bool "Enable parens in options" default BUSYBOX_DEFAULT_FEATURE_FIND_PAREN depends on BUSYBOX_CONFIG_FIND help Enable usage of parens '(' to specify logical order of arguments. config BUSYBOX_CONFIG_FEATURE_FIND_SIZE bool "Enable -size: file size matching" default BUSYBOX_DEFAULT_FEATURE_FIND_SIZE depends on BUSYBOX_CONFIG_FIND config BUSYBOX_CONFIG_FEATURE_FIND_PRUNE bool "Enable -prune: exclude subdirectories" default BUSYBOX_DEFAULT_FEATURE_FIND_PRUNE depends on BUSYBOX_CONFIG_FIND help If the file is a directory, don't descend into it. Useful for exclusion .svn and CVS directories. config BUSYBOX_CONFIG_FEATURE_FIND_QUIT bool "Enable -quit: exit" default BUSYBOX_DEFAULT_FEATURE_FIND_QUIT depends on BUSYBOX_CONFIG_FIND help If this action is reached, 'find' exits. config BUSYBOX_CONFIG_FEATURE_FIND_DELETE bool "Enable -delete: delete files/dirs" default BUSYBOX_DEFAULT_FEATURE_FIND_DELETE depends on BUSYBOX_CONFIG_FIND && BUSYBOX_CONFIG_FEATURE_FIND_DEPTH help Support the 'find -delete' option f
// SPDX-License-Identifier: GPL-2.0-or-later OR MIT

#include "qca9558_devolo_dvl1xxx.dtsi"

/ {
	compatible = "devolo,dvl1750c", "qca,qca9558";
	model = "devolo WiFi pro 1750c";

	aliases {
		led-boot = &led_status_blue;
		led-failsafe = &led_status_red;
		led-running = &led_status_blue;
		led-upgrade = &led_status_red;
	};

	leds {
		compatible = "gpio-leds";

		led_status_blue: status_blue {
			label = "blue:status";
			gpios = <&gpio 14 GPIO_ACTIVE_LOW>;
			default-state = "on";
		};

		led_status_red: status_red {
			label = "red:status";
			gpios = <&gpio 15 GPIO_ACTIVE_LOW>;
		};
	};

	beeper {
		compatible = "gpio-beeper";
		gpios = <&gpio 21 GPIO_ACTIVE_HIGH>;
	};
};

&eth0 {
	pll-data = <0xae000000 0x80000101 0x80001313>;
	phy-mode = "rgmii-id";
};

&gmac_config {
	rxdv-delay = <3>;
	rxd-delay = <3>;
	txen-delay = <3>;
	txd-delay = <3>;
};