• 【RV1103】RTL8723bs (SD卡形状模块)驱动开发


    追加

    整理好的SDK,下载下来,改一下WiFi名和密码再编译就能用:
    https://gitee.com/liefyuan2/luckfox-pico/tree/main-wifi-sdio/

    • 克隆源码:git clone -b main-wifi-sdio https://gitee.com/liefyuan2/luckfox-pico.git

    • 系统账号:root

    • 系统密码:luckfox

    • WiFi模块使用,插入板载的SD卡座上就可以使用WiFi

    • 在硬件连接OK的情况下,上电自动连接WiFi

    • ssid和passwd在SDK中的修改位置:sdk/project/app/wifi_app/wpa_supplicant.conf

    ctrl_interface=/var/run/wpa_supplicant
    ap_scan=1
    update_config=1
    
    network={
    	ssid="your-ssid"
    	psk="your ssid password"
    	key_mgmt=WPA-PSK
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 配置文件选择:./build.sh lunch 选择 2即2. BoardConfig_IPC/BoardConfig-SPI_NAND-NONE-RV1103_Luckfox_Pico_Liefyuan-IPC.mk

    前言

    硬件:

    • 开发板:LuckFox Pico (主控RV1103)
    • WiFi模块:Licheepi wifi+bt模块(TF卡形状,SDIO接口)
    • 改进:LuckFox Pico焊上spinand flash (W25N01GVZEIG) 然后使用 LuckFox Pico Plus的设备树和配置文件(或者说在LuckFox Pico Plus的设备树和配置文件上修改的)

    使用LuckFox Pico的原因是,LuckFox Pico默认使用SD启动,SD卡的连线OK,直接插一个SD卡性状的WiFi模块没毛病啊!

    最终实物:
    在这里插入图片描述

    硬件分析

    Luckfox Pico的SD卡接口硬件原理图

    在这里插入图片描述

    在这里插入图片描述

    LuckFox Pico 开发板上的21~27外接引脚接的是SPI Flash的引脚。
    在这里插入图片描述
    LuckFox Pico Plus 开发板上的21~27外接引脚接的却是SD卡槽的引脚。

    在这里插入图片描述

    LicheePi zero WiFi+BT模块

    在这里插入图片描述

    licheepi上面的TF卡座
    在这里插入图片描述

    tf WiFi原理图
    在这里插入图片描述可以看到:

    • 12号WL_DSI(WL_REG) 引脚直接上拉了
    • 13号WL_HOST_WAKE 引脚直接上拉了

    总结

    如果想在LuckFox Pico开发板上的SD卡槽使用WiFi模块,那就把它当SD卡用。后续的设备树也是基于这个。

    正文

    修改的内容

    项目内容文件地址
    Kernel WiFi驱动支持
    Kernel 设备树
    SDK全局配置
    全局编译脚本

    Kernel WiFi驱动支持

    看附件里面的完整配置

    在这里插入图片描述配置WiFi,测试阶段配置编译成ko文件,上电后在文件系统内手动安装。

    在这里插入图片描述配置WiFi模块–具体型号的支持,测试阶段编译成ko文件,上电后手动加载模块。

    Kernel编译配置文件
    sdk/sysdrv/source/kernel/arch/arm/configs/luckfox_rv1106_linux_defconfig

    Kernel 设备树支持

    瑞芯微的WiFi配置是一定需要一个sdio_pwrseq: sdio-pwrseq设备树节点的,所以我就把开发板上的一个没有使用的引脚给配置进去了。

    修改一:

    总结来说就是:

    • sfc 和 sdmmc 我都要!
    • 配置一个没人要的引脚给sdio_pwrseq节点

    sdk/sysdrv/source/kernel/arch/arm/boot/dts/rv1103g-luckfox-pico-plus.dts

    // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
    /*
     * Copyright (c) 2022 Rockchip Electronics Co., Ltd.
     */
    
    /dts-v1/;
    
    #include "rv1103.dtsi"
    #include "rv1106-evb.dtsi"
    #include "rv1103-luckfox-pico-plus-ipc.dtsi"
    
    / {
    	model = "Luckfox Pico Plus";
    	compatible = "rockchip,rv1103g-38x38-ipc-v10", "rockchip,rv1103";
    	
    	sdio_pwrseq: sdio-pwrseq {
    		compatible = "mmc-pwrseq-simple";
    		pinctrl-names = "default";
    		// pinctrl-0 = <&wifi_enable_h>;
    		/*
    		 * On the module itself this is one of these (depending
    		 * on the actual card populated):
    		 * - SDIO_RESET_L_WL_REG_ON
    		 * - PDN (power down when low)
    		 */
    		post-power-on-delay-ms = <200>;
    		reset-gpios = <&gpio3 RK_PC5 GPIO_ACTIVE_HIGH>; # 这个引脚暂时没有用到
    	};
    
    	vcc_1v8: vcc-1v8 {
    		compatible = "regulator-fixed";
    		regulator-name = "vcc_1v8";
    		regulator-always-on;
    		regulator-boot-on;
    		regulator-min-microvolt = <1800000>;
    		regulator-max-microvolt = <1800000>;
    	};
    
    	vcc_3v3: vcc-3v3 {
    		compatible = "regulator-fixed";
    		regulator-name = "vcc_3v3";
    		regulator-always-on;
    		regulator-boot-on;
    		regulator-min-microvolt = <3300000>;
    		regulator-max-microvolt = <3300000>;
    	};
    };
    /**********GPIO**********/
    &pinctrl {
    
    };
    
    &sdmmc {
    	max-frequency = <200000000>;
    	bus-width = <4>;
    	cap-sd-highspeed;
    	cap-sdio-irq;
    	keep-power-in-suspend;
    	non-removable;
    	rockchip,default-sample-phase = <90>;
    	sd-uhs-sdr104;
    	supports-sdio;
    	mmc-pwrseq = <&sdio_pwrseq>; //sdio_pwrseq只能被一个节点引用,不能sdmmc、sdio同时引用的!
    	status = "okay";
    };
    
    &sfc {
    	status = "okay";
    
    	flash@0 {
    		compatible = "spi-nand";
    		reg = <0>;
    		spi-max-frequency = <75000000>;
    		spi-rx-bus-width = <4>;
    		spi-tx-bus-width = <1>;
    	};
    };
    
    /**********ETH**********/
    &gmac {
    	status = "disabled";
    };
    
    /**********USB**********/
    //&usbdrd {
    //	status = "disabled";
    //};
    
    //&usbdrd_dwc3 {
    //	status = "disabled";
    //};
    
    //&u2phy {
    //	status = "disabled";
    //};
    
    //&u2phy_otg {
    //	status = "disabled";
    //};
    
    /**********I2C**********/
    // &i2c0 {
    // 	status = "okay";
    // 	pinctrl-0 = <&i2c0m2_xfer>;
    // 	clock-frequency = <100000>;
    // };
    &i2c3 {
    	status = "okay";
    	pinctrl-0 = <&i2c3m1_xfer>;
    	clock-frequency = <100000>;
    };
    
    /**********SPI**********/
    &spi0 {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&spi0m0_pins>;
    	cs-gpios = <&gpio1 RK_PC0 1>;
    	// cs-gpios = <&gpio1 26 1>;
    	#address-cells = <1>;
    	#size-cells = <0>;
    	spidev@0 {
    		compatible = "rockchip,spidev";
    		spi-max-frequency = <1000000000>;
    		reg = <0>;
    	};
    };
    
    /**********UART**********/
    &uart3 {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&uart3m1_xfer>;
    };
    &uart4 {
    	status = "okay";
    	pinctrl-names = "default";
    	pinctrl-0 = <&uart4m1_xfer>;
    };
    
    /**********PWM**********/
    
    &pwm0 {
    	status = "okay";
    	pinctrl-names = "active";
    	pinctrl-0 = <&pwm0m0_pins>;
    	// pinctrl-0 = <&pwm0m1_pins>;
    };
    &pwm1 {
    	status = "okay";
    	pinctrl-names = "active";
    	pinctrl-0 = <&pwm1m0_pins>;
    	// pinctrl-0 = <&pwm1m1_pins>;
    };
    
    &pwm10 {
    	status = "okay";
    	pinctrl-names = "active";
    	pinctrl-0 = <&pwm10m1_pins>;
    	// pinctrl-0 = <&pwm10m2_pins>;
    	// pinctrl-0 = <&pwm10m0_pins>;
    };
    &pwm11 {
    	status = "okay";
    	pinctrl-names = "active";
    	pinctrl-0 = <&pwm11m1_pins>;
    	// pinctrl-0 = <&pwm11m2_pins>;
    	// pinctrl-0 = <&pwm11m0_pins>;
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169

    修改二:

    sdk/sysdrv/source/kernel/arch/arm/boot/dts/rv1103-luckfox-pico-plus-ipc.dtsi

    // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
    /*
     * Copyright (c) 2022 Rockchip Electronics Co., Ltd.
     */
    #include "rv1106-amp.dtsi"
    
    / {
    	chosen {
    		bootargs = "earlycon=uart8250,mmio32,0xff4c0000 console=ttyFIQ0 rootwait snd_soc_core.prealloc_buffer_size_kbytes=16 coherent_pool=0";
    	};
    
    	acodec_sound: acodec-sound {
    		compatible = "simple-audio-card";
    		simple-audio-card,name = "rv-acodec";
    		simple-audio-card,format = "i2s";
    		simple-audio-card,mclk-fs = <256>;
    		simple-audio-card,cpu {
    			sound-dai = <&i2s0_8ch>;
    		};
    		simple-audio-card,codec {
    			sound-dai = <&acodec>;
    		};
    	};
    
    	vcc_1v8: vcc-1v8 {
    		compatible = "regulator-fixed";
    		regulator-name = "vcc_1v8";
    		regulator-always-on;
    		regulator-boot-on;
    		regulator-min-microvolt = <1800000>;
    		regulator-max-microvolt = <1800000>;
    	};
    
    	vcc_3v3: vcc-3v3 {
    		compatible = "regulator-fixed";
    		regulator-name = "vcc_3v3";
    		regulator-always-on;
    		regulator-boot-on;
    		regulator-min-microvolt = <3300000>;
    		regulator-max-microvolt = <3300000>;
    	};
    
    	vdd_arm: vdd-arm {
    		compatible = "regulator-fixed";
    		regulator-name = "vdd_arm";
    		regulator-min-microvolt = <900000>;
    		regulator-max-microvolt = <900000>;
    		regulator-always-on;
    		regulator-boot-on;
    	};
    	leds: leds {
    		compatible = "gpio-leds";
    		work_led: work{
    			gpios = <&gpio3 RK_PC6 GPIO_ACTIVE_HIGH>;
    			linux,default-trigger = "activity";
    			default-state = "on";
    		};	
    	};
    };
    
    &acodec {
    	#sound-dai-cells = <0>;
    	pa-ctl-gpios = <&gpio1 RK_PA1 GPIO_ACTIVE_HIGH>;
    	status = "okay";
    };
    
    &cpu0 {
    	cpu-supply = <&vdd_arm>;
    };
    
    &csi2_dphy_hw {
    	status = "okay";
    };
    
    &csi2_dphy0 {
    	status = "okay";
    
    	ports {
    		#address-cells = <1>;
    		#size-cells = <0>;
    
    		port@0 {
    			reg = <0>;
    			#address-cells = <1>;
    			#size-cells = <0>;
    
    			csi_dphy_input0: endpoint@0 {
    				reg = <0>;
    				remote-endpoint = <&sc3336_out>;
    				data-lanes = <1 2>;
    			};
    
    			csi_dphy_input1: endpoint@1 {
    				reg = <1>;
    				remote-endpoint = <&sc4336_out>;
    				data-lanes = <1 2>;
    			};
    
    			csi_dphy_input2: endpoint@2 {
    				reg = <2>;
    				remote-endpoint = <&sc530ai_out>;
    				data-lanes = <1 2>;
    			};
    		};
    
    		port@1 {
    			reg = <1>;
    			#address-cells = <1>;
    			#size-cells = <0>;
    
    			csi_dphy_output: endpoint@0 {
    				reg = <0>;
    				remote-endpoint = <&mipi_csi2_input>;
    			};
    		};
    	};
    };
    
    &i2c4 {
    	status = "okay";
    	clock-frequency = <400000>;
    	pinctrl-names = "default";
    	pinctrl-0 = <&i2c4m2_xfer>;
    
    	sc3336: sc3336@30 {
    		compatible = "smartsens,sc3336";
    		status = "okay";
    		reg = <0x30>;
    		clocks = <&cru MCLK_REF_MIPI0>;
    		clock-names = "xvclk";
    		pwdn-gpios = <&gpio3 RK_PC5 GPIO_ACTIVE_HIGH>;
    		pinctrl-names = "default";
    		pinctrl-0 = <&mipi_refclk_out0>;
    		rockchip,camera-module-index = <0>;
    		rockchip,camera-module-facing = "back";
    		rockchip,camera-module-name = "CMK-OT2119-PC1";
    		rockchip,camera-module-lens-name = "30IRC-F16";
    		port {
    			sc3336_out: endpoint {
    				remote-endpoint = <&csi_dphy_input0>;
    				data-lanes = <1 2>;
    			};
    		};
    	};
    
    	sc4336: sc4336@30 {
    		compatible = "smartsens,sc4336";
    		status = "okay";
    		reg = <0x30>;
    		clocks = <&cru MCLK_REF_MIPI0>;
    		clock-names = "xvclk";
    		pwdn-gpios = <&gpio3 RK_PC5 GPIO_ACTIVE_HIGH>;
    		pinctrl-names = "default";
    		pinctrl-0 = <&mipi_refclk_out0>;
    		rockchip,camera-module-index = <0>;
    		rockchip,camera-module-facing = "back";
    		rockchip,camera-module-name = "OT01";
    		rockchip,camera-module-lens-name = "40IRC_F16";
    		port {
    			sc4336_out: endpoint {
    				remote-endpoint = <&csi_dphy_input1>;
    				data-lanes = <1 2>;
    			};
    		};
    	};
    
    	sc530ai: sc530ai@30 {
    		compatible = "smartsens,sc530ai";
    		status = "okay";
    		reg = <0x30>;
    		clocks = <&cru MCLK_REF_MIPI0>;
    		clock-names = "xvclk";
    		pwdn-gpios = <&gpio3 RK_PC5 GPIO_ACTIVE_HIGH>;
    		pinctrl-names = "default";
    		pinctrl-0 = <&mipi_refclk_out0>;
    		rockchip,camera-module-index = <0>;
    		rockchip,camera-module-facing = "back";
    		rockchip,camera-module-name = "CMK-OT2115-PC1";
    		rockchip,camera-module-lens-name = "30IRC-F16";
    		port {
    			sc530ai_out: endpoint {
    				remote-endpoint = <&csi_dphy_input2>;
    				data-lanes = <1 2>;
    			};
    		};
    	};
    };
    
    &i2s0_8ch {
    	#sound-dai-cells = <0>;
    	status = "okay";
    };
    
    &mipi0_csi2 {
    	status = "okay";
    
    	ports {
    		#address-cells = <1>;
    		#size-cells = <0>;
    
    		port@0 {
    			reg = <0>;
    			#address-cells = <1>;
    			#size-cells = <0>;
    
    			mipi_csi2_input: endpoint@1 {
    				reg = <1>;
    				remote-endpoint = <&csi_dphy_output>;
    			};
    		};
    
    		port@1 {
    			reg = <1>;
    			#address-cells = <1>;
    			#size-cells = <0>;
    
    			mipi_csi2_output: endpoint@0 {
    				reg = <0>;
    				remote-endpoint = <&cif_mipi_in>;
    			};
    		};
    	};
    };
    
    &pwm0 {
    	status = "okay";
    };
    
    &rkcif {
    	status = "okay";
    };
    
    &rkcif_mipi_lvds {
    	status = "okay";
    
    	pinctrl-names = "default";
    	pinctrl-0 = <&mipi_pins>;
    	port {
    		/* MIPI CSI-2 endpoint */
    		cif_mipi_in: endpoint {
    			remote-endpoint = <&mipi_csi2_output>;
    		};
    	};
    };
    
    &rkcif_mipi_lvds_sditf {
    	status = "okay";
    
    	port {
    		/* MIPI CSI-2 endpoint */
    		mipi_lvds_sditf: endpoint {
    			remote-endpoint = <&isp_in>;
    		};
    	};
    };
    
    &rkisp {
    	status = "okay";
    };
    
    &rkisp_vir0 {
    	status = "okay";
    
    	port@0 {
    		isp_in: endpoint {
    			remote-endpoint = <&mipi_lvds_sditf>;
    		};
    	};
    };
    
    &saradc {
    	status = "okay";
    	vref-supply = <&vcc_1v8>;
    };
    
    &sfc {
    	status = "okay";
    
    	flash@0 {
    		compatible = "spi-nand";
    		reg = <0>;
    		spi-max-frequency = <80000000>;
    		spi-rx-bus-width = <4>;
    		spi-tx-bus-width = <1>;
    	};
    };
    
    &tsadc {
    	status = "okay";
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290

    SDK全局配置支持 wifi

    文件:sdk/project/cfg/BoardConfig_IPC/BoardConfig-SPI_NAND-NONE-RV1103_Luckfox_Pico_Plus-IPC.mk

    一定要添加这个:

    export RK_ENABLE_WIFI=y
    
    • 1

    这里主要是添加了wpa_supplicant软件包,它的位置在sdk/project/app/wifi_app,配置好了后会进入该目录进行编译。然后在该目录下生成一个out目录,打包阶段会把该`out``目录下的文件拷贝到文件系统里面去。即为你的系统添加了wpa_supplicant软件包。

    全局编译脚本支持

    修改文件:sdk/project/build.sh

    编译逻辑

    function build_app() {
    	check_config RK_APP_TYPE || return 0
    
    	build_meta --export --media_dir $RK_PROJECT_PATH_MEDIA # export meta header files
    	test -d ${SDK_APP_DIR} && make -C ${SDK_APP_DIR}
    
    	finish_build
    }
    
    
    function build_meta(){
    	msg_info "============Start building meta============"
    	if [ -n "$RK_META_SIZE" ];then
    		if [ -d "${RK_PROJECT_TOP_DIR}/make_meta" ];then
    			__meta_param="$RK_META_PARAM $RK_CAMERA_PARAM --meta_part_size=$RK_META_SIZE"
    			${RK_PROJECT_TOP_DIR}/make_meta/build_meta.sh $@ \
    				--cam_iqfile ${RK_CAMERA_SENSOR_IQFILES}                            \
    				--meta_param $__meta_param                   \
    				--output $RK_PROJECT_OUTPUT_IMAGE            \
    				--rootfs_dir $RK_PROJECT_PACKAGE_ROOTFS_DIR  \
    				--media_dir $RK_PROJECT_PATH_MEDIA           \
    				--pc_tools_dir $RK_PROJECT_PATH_PC_TOOLS     \
    				--tiny_meta $RK_TINY_META
    		fi
    	fi
    	finish_build
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    拷贝rtl8723bs的固件到文件系统的固定目录里面去

    在根文件打包逻辑里面,把sdk/external/lib/firmware/rtlwifi/rtl8723bs_nic.bin固件拷贝到根文件系统里面去。

    注意:

    • 自己在sdk根目录下增加目录:mkdir -p external/lib/firmware/rtlwifi/
    • wifi固件的下载地址:https://raw.githubusercontent.com/wkennington/linux-firmware/master/rtlwifi/rtl8723bs_nic.bin
    • 再把下载好的WiFi固件拷贝进sdk/external/lib/firmware/rtlwifi/目录
    function __PACKAGE_ROOTFS()
    {
    	local rootfs_tarball _target_dir _install_dir
    	rootfs_tarball="$RK_PROJECT_PATH_SYSDRV/rootfs_${RK_LIBC_TPYE}_${RK_CHIP}.tar"
    	if [ -f $rootfs_tarball ]; then
    		tar xf $rootfs_tarball -C $RK_PROJECT_OUTPUT
    	else
    		msg_error "Not found rootfs tarball: $rootfs_tarball"
    		exit 1
    	fi
    
    	build_get_sdk_version
    
    	cat > $RK_PROJECT_PACKAGE_ROOTFS_DIR/bin/sdkinfo <<EOF
    #!/bin/sh
    echo Build Time:  `date "+%Y-%m-%d-%T"`
    echo SDK Version: ${GLOBAL_SDK_VERSION}
    EOF
    	chmod a+x $RK_PROJECT_PACKAGE_ROOTFS_DIR/bin/sdkinfo
    
    	__COPY_FILES $RK_PROJECT_PATH_APP/root $RK_PROJECT_PACKAGE_ROOTFS_DIR
    	__COPY_FILES $RK_PROJECT_PATH_MEDIA/root $RK_PROJECT_PACKAGE_ROOTFS_DIR
    	# liefyuan: add wifi firmware /lib/firmware/rtlwifi/
    	__COPY_FILES $SDK_ROOT_DIR/external $RK_PROJECT_PACKAGE_ROOTFS_DIR
    
    	if [ -d "$RK_PROJECT_PACKAGE_ROOTFS_DIR/usr/share/iqfiles" ];then
    		(cd $RK_PROJECT_PACKAGE_ROOTFS_DIR/etc; ln -sf ../usr/share/iqfiles ./)
    	fi
    
    	if [ -f $RK_PROJECT_FILE_ROOTFS_SCRIPT ];then
    		chmod a+x $RK_PROJECT_FILE_ROOTFS_SCRIPT
    		cp -f $RK_PROJECT_FILE_ROOTFS_SCRIPT $RK_PROJECT_PACKAGE_ROOTFS_DIR/etc/init.d
    	fi
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    上面其实只增加了__COPY_FILES $SDK_ROOT_DIR/external $RK_PROJECT_PACKAGE_ROOTFS_DIR 其目的就是把WiFi固件和目录整个的拷贝进文件系统。

    上电后手动安装驱动ko模块–后续会改为自动加载

    # 进入板子的根文件系统
    # 安装驱动模块
    cd /oem/usr/ko
    insmod libarc4.ko
    insmod cfg80211.ko
    insmod mac80211.ko
    insmod r8723bs.ko
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    安装的模块信息

    # cd oem/usr/ko/
    # ls
    aes_generic.ko                rve.ko
    gcm.ko                        insmod_ko.sh
    os04a10.ko                    sc3336.ko
    video_rkisp.ko                video_rkcif.ko
    atbm603x_.ko                  sc530ai.ko
    hichannel.ko                  ssv6x5x.ko
    insmod_wifi.sh                ghash-generic.ko
    libsha256.ko                  rga3.ko
    sha256_generic.ko             cfg80211.ko
    libarc4.ko                    rockit.ko
    atbm6041_wifi_sdio.ko         mpp_vcodec.ko
    ctr.ko                        release_version.txt
    rknpu.ko                      sc4336.ko
    8189fs.ko                     rk_dvbm.ko
    hpmcu_wrap.bin                gf128mul.ko
    8188fu.ko                     phy-rockchip-csi2-dphy.ko
    mac80211.ko                   r8723bs.ko
    ccm.ko                        phy-rockchip-csi2-dphy-hw.ko
    libaes.ko                     cmac.ko
    ipv6.ko
    # insmod libarc4.ko
    # insmod cfg80211.ko
    [   63.210993] cfg80211: Loading compiled-in X.509 certificates for regulatory database
    [   63.212653] cfg80211: Problem loading in-kernel X.509 certificate (-22)
    [   63.214034] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
    [   63.214060] cfg80211: failed to load regulatory.db
    # insmod mac80211.ko
    # insmod r8723bs.ko
    [   64.480323] r8723bs: module is from the staging directory, the quality is unknown, you have been warned.
    [   64.491407] RTL8723BS: module init start
    [   64.491435] RTL8723BS: rtl8723bs v4.3.5.5_12290.20140916_BTCOEX20140507-4E40
    [   64.491444] RTL8723BS: rtl8723bs BT-Coex version = BTCOEX20140507-4E40
    [   64.491813] pnetdev = a1b3bae2
    [   64.517828] RTL8723BS: rtw_ndev_init(wlan0)
    [   64.527370] RTL8723BS: module init ret =0
    #
    #
    # ifconfig -a
    lo        Link encap:Local Loopback
              inet addr:127.0.0.1  Mask:255.0.0.0
              UP LOOPBACK RUNNING  MTU:65536  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    usb0      Link encap:Ethernet  HWaddr DA:AD:93:D5:C0:24
              inet addr:172.32.0.93  Bcast:172.32.255.255  Mask:255.255.0.0
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:225 errors:0 dropped:149 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:24043 (23.4 KiB)  TX bytes:0 (0.0 B)
    
    wlan0     Link encap:Ethernet  HWaddr 84:20:96:AB:33:12
              BROADCAST MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62

    此时,wlan0已经出来了。

    开启WiFi和配置动态IP

    1.开启WiFi:ifconfig wlan0 up

    2.修改配置文件(配置文件里面的WiFi名和WiFi密码):vi /etc/wpa_supplicant.conf

    ctrl_interface=/var/run/wpa_supplicant
    ctrl_interface_group=0
    ap_scan=1
    network={
        ssid="KKKK"
        scan_ssid=1
        key_mgmt=WPA-EAP WPA-PSK IEEE8021X NONE
        pairwise=TKIP CCMP
        group=CCMP TKIP WEP104 WEP40
        psk="99999999"
        priority=5
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    3.创建一个socket文件用于通信:mkdir -p /var/run/wpa_supplicant

    4.连接WiFi:wpa_supplicant -B -c /etc/wpa_supplicant.conf -i wlan0

    # wpa_supplicant -B -c /etc/wpa_supplicant.conf -i wlan0
    Successfully initialized wpa_supplicant
    rfkill: Cannot open RFKILL control device
    [  670.124975] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x00000008
    [  678.988193] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x00000008
    [  688.127631] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x00000008
    [  697.804890] RTL8723BS: rtw_set_802_11_connect(wlan0)  fw_state = 0x00000008
    [  698.446240] RTL8723BS: start auth
    [  698.466241] RTL8723BS: auth success, start assoc
    [  698.521065] RTL8723BS: rtw_cfg80211_indicate_connect(wlan0) BSS not found !!
    [  698.521119] RTL8723BS: assoc success
    [  698.598174] RTL8723BS: send eapol packet
    [  698.643221] RTL8723BS: send eapol packet
    [  698.644951] RTL8723BS: set pairwise key camid:4, addr:9e:a4:d3:f5:da:8d, kid:0, type:AES
    [  698.647953] RTL8723BS: set group key camid:5, addr:9e:a4:d3:f5:da:8d, kid:1, type:AES
    #
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    5.配置动态ip:udhcpc -i wlan0

    # udhcpc -i wlan0
    udhcpc: started, v1.27.2
    udhcpc: sending discover
    udhcpc: sending select for 192.168.7.42
    udhcpc: lease of 192.168.7.42 obtained, lease time 3599
    deleting routers
    adding dns 192.168.7.229
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    6.查看网络信息:wpa_cli -iwlan0 status

    # wpa_cli -iwlan0 status
    bssid=9e:a4:d3:f5:da:8d
    freq=2437
    ssid=liefyuan
    id=0
    mode=station
    pairwise_cipher=CCMP
    group_cipher=CCMP
    key_mgmt=WPA2-PSK
    wpa_state=COMPLETED
    ip_address=192.168.7.42
    address=84:20:96:ab:33:12
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    7.外网连接测试:ping www.baidu.com

    # ping www.baidu.com
    PING www.baidu.com (14.119.104.254): 56 data bytes
    64 bytes from 14.119.104.254: seq=1 ttl=55 time=54.327 ms
    64 bytes from 14.119.104.254: seq=2 ttl=55 time=35.489 ms
    64 bytes from 14.119.104.254: seq=3 ttl=55 time=33.620 ms
    64 bytes from 14.119.104.254: seq=4 ttl=55 time=28.683 ms
    64 bytes from 14.119.104.254: seq=5 ttl=55 time=52.885 ms
    64 bytes from 14.119.104.254: seq=6 ttl=55 time=376.766 ms
    64 bytes from 14.119.104.254: seq=7 ttl=55 time=21.278 ms
    64 bytes from 14.119.104.254: seq=8 ttl=55 time=50.338 ms
    64 bytes from 14.119.104.254: seq=10 ttl=55 time=101.665 ms
    64 bytes from 14.119.104.254: seq=11 ttl=55 time=213.840 ms
    ^C
    --- www.baidu.com ping statistics ---
    12 packets transmitted, 10 packets received, 16% packet loss
    round-trip min/avg/max = 21.278/96.889/376.766 ms
    #
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    8.配置态ip:ifconfig wlan0 192.168.0.231 netmask 255.255.255.0 broadcast 192.168.0.1

    修改设备树:SDK/sysdrv/source/kernel/arch/arm/boot/dts/rv1103g-luckfox-pico-plus.dts

    /{
    	model = "ZNZPI RV1106G V10 Board";
    	compatible = "rockchip,rv1106g-evb1-v10", "rockchip,rv1106";
    
    	sdio_pwrseq: sdio-pwrseq {
    		compatible = "mmc-pwrseq-simple";
    		pinctrl-names = "default";
    		pinctrl-0 = <&wifi_enable_h>;
    		/* 特别注意:WIFI_REG_ON GPIO_ACTIVE 配置跟使能状态恰好是相反的,
    		* 高有效为LOW,低有效则为HIGH
    		* 切记:这个配置跟下面的WIFI,poweren_gpio是互斥的,不能同时配置!!!
    		*/
    		post-power-on-delay-ms = <200>;
    		reset-gpios = <&gpio3 RK_PC5 GPIO_ACTIVE_HIGH>;
    	};
    
    	vcc_1v8: vcc-1v8 {
    		compatible = "regulator-fixed";
    		regulator-name = "vcc_1v8";
    		regulator-always-on;
    		regulator-boot-on;
    		regulator-min-microvolt = <1800000>;
    		regulator-max-microvolt = <1800000>;
    	};
    
    	vcc_3v3: vcc-3v3 {
    		compatible = "regulator-fixed";
    		regulator-name = "vcc_3v3";
    		regulator-always-on;
    		regulator-boot-on;
    		regulator-min-microvolt = <3300000>;
    		regulator-max-microvolt = <3300000>;
    	};
    
    	vcc3v3_sd: vcc3v3-sd {
    		compatible = "regulator-fixed";
    		//gpio = <&gpio0 RK_PA3 GPIO_ACTIVE_LOW>;
    		regulator-name = "vcc3v3_sd";
    		regulator-min-microvolt = <3300000>;
    		regulator-max-microvolt = <3300000>;
    		enable-active-low;
                    regulator-always-on;
                    regulator-boot-on;
    		pinctrl-names = "default";
    		pinctrl-0 = <&sdmmc_pwren>;
    	};
    
    	wireless_wlan: wireless-wlan {
    		compatible = "wlan-platdata";
    		rockchip,grf = <&grf>;
    		//clocks = <&hym8563>;
     		//clock-names = "clk_wifi";
    		wifi_chip_type = "rtl8723bs";
    		pinctrl-names = "default";
    		pinctrl-0 = <&wifi_host_wake_irq>, <&wifi_enable_h>;
    		WIFI,host_wake_irq = <&gpio0 RK_PA1 GPIO_ACTIVE_HIGH>;
    		//WIFI,poweren_gpio = <&gpio0 RK_PA2 GPIO_ACTIVE_HIGH>;
    		status = "okay";
    	};
    };
    
    &pinctrl {
    	sdio-pwrseq {
    		wifi_enable_h: wifi-enable-h {
    				rockchip,pins =
    				/* 对应上面的WIFI_REG_ON,关掉上下拉,防止不能拉高或拉低 */
    				<0 RK_PA2 RK_FUNC_GPIO &pcfg_pull_none>;
    			};
    	};
    };
    
    &sdio {
    	max-frequency = <150000000>;
    	no-sd;
    	no-mmc;
    	bus-width = <4>;
    	cap-sd-highspeed;
    	keep-power-in-suspend;
    	mmc-pwrseq = <&sdio_pwrseq>;
    	non-removable;
    	sd-uhs-sdr50;
    	no-1-8-v;
    	pinctrl-names = "default";
    	pinctrl-0 = <&sdmmc1m0_cmd &sdmmc1m0_clk &sdmmc1m0_bus4>;
    	status = "okay";
    };
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87

    WiFi带宽测试(15Mbits/sec~21Mbits/sec)

    以Ubuntu虚拟机为服务器:iperf -s

    liefyuan@ubuntu:~/rv1103/luckfox-pico-main-origin$ iperf -s
    ------------------------------------------------------------
    Server listening on TCP port 5001
    TCP window size:  128 KByte (default)
    ------------------------------------------------------------
    [  4] local 192.168.1.105 port 5001 connected with 192.168.1.107 port 59360
    [ ID] Interval       Transfer     Bandwidth
    [  4]  0.0-10.1 sec  21.6 MBytes  18.0 Mbits/sec
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    板子测试:iperf -c 192.168.1.105 -i 1

    # cd /usr/bin/
    # chmod 777 iperf
    # iperf -c 192.168.1.105 -i 1
    ------------------------------------------------------------
    Client connecting to 192.168.1.105, TCP port 5001
    TCP window size: 43.8 KByte (default)
    ------------------------------------------------------------
    [  3] local 192.168.1.107 port 59360 connected with 192.168.1.105 port 5001
    [ ID] Interval       Transfer     Bandwidth
    [  3]  0.0- 1.0 sec  2.50 MBytes  21.0 Mbits/sec
    [  3]  1.0- 2.0 sec  2.38 MBytes  19.9 Mbits/sec
    [  3]  2.0- 3.0 sec  2.38 MBytes  19.9 Mbits/sec
    [  3]  3.0- 4.0 sec  1.88 MBytes  15.7 Mbits/sec
    [  3]  4.0- 5.0 sec  2.38 MBytes  19.9 Mbits/sec
    [  3]  5.0- 6.0 sec  2.00 MBytes  16.8 Mbits/sec
    [  3]  6.0- 7.0 sec  2.00 MBytes  16.8 Mbits/sec
    [  3]  7.0- 8.0 sec  2.25 MBytes  18.9 Mbits/sec
    [  3]  8.0- 9.0 sec  1.88 MBytes  15.7 Mbits/sec
    [  3]  9.0-10.0 sec  1.88 MBytes  15.7 Mbits/sec
    [  3]  0.0-10.0 sec  21.6 MBytes  18.1 Mbits/sec
    #
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    命令解析:​

    • -s:表示当前设备做服务器。​
    • -c:表示当前设备做客户端。​
    • 192.168.6.190:服务器的IP地址。​
    • -i:触发周期。​

    测试出来的Bitrate大概为15 Mbits/sec左右网络速度(测试前请不要开启其他应用,以免影响测试速度)。

    后注

    设备树节点&sdio的解释

    &sdio0 {
        status = "okay";
        max-frequency = <150000000>;  //sd卡的配置,最大运行频率为150Mhz
        bus-width = <4>;  //此配置同SD卡功能。number of data lines,此配置标识需要使用SD卡的线宽。SD卡最大支持4线模式.
        cap-sd-highspeed;   //此配置同SD卡功能,作为SDIO外设,也有区分是否为highspeed的SDIO外设
        cap-sdio-irq;       //此配置标识该SDIO外设(通常是Wifi)是否支持sdio中断,,如果你的外设是OOB中断,请不要加入此项。支持哪种类型的中断请联系Wifi原厂确定
        disable-wp;
        keep-power-in-suspend;  //此配置表示是否支持睡眠不断电,请默认加入该选项。Wifi一般都有深度唤醒的要求。
        mmc-pwrseq = <&sdio_pwrseq>;  //此项是SDIO外设(一般是Wifi)的电源控制。为必须项,否则Wifi无法上电工作
        non-removable;  //此项表示该插槽为不可移动设备且此项为SDIO设备必须添加项
        num-slots = <1>; //此项同SD卡的配置。指定控制器支持的插槽数。
        pinctrl-names = "default";
        pinctrl-0 = <&sdio0_bus4 &sdio0_cmd &sdio0_clk &sdio0_int>;
        sd-uhs-sdr104;  //此项配置决定该SDIO设备是否支持SDIO3.0模式。前提是需要Wifi的IO电压为1.8v
        supports-sdio;  //标识此插槽为SDIO功能,为必须添加项。否则无法初始化SDIO外设。
    };
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    sdio_pwrseq这个是必须的那就随便配置一个就好了。本来也不用连接。

    附件

    Kernel编译配置文件

    sdk/sysdrv/source/kernel/arch/arm/configs/luckfox_rv1106_linux_defconfig

    #
    # Automatically generated file; DO NOT EDIT.
    # Linux/arm 5.10.110 Kernel Configuration
    #
    CONFIG_CC_VERSION_TEXT="gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0"
    CONFIG_CC_IS_GCC=y
    CONFIG_GCC_VERSION=70500
    CONFIG_LD_VERSION=230000000
    CONFIG_CLANG_VERSION=0
    CONFIG_LLD_VERSION=0
    CONFIG_CC_CAN_LINK=y
    CONFIG_CC_CAN_LINK_STATIC=y
    CONFIG_CC_HAS_ASM_GOTO=y
    CONFIG_CC_HAS_ASM_INLINE=y
    CONFIG_IRQ_WORK=y
    CONFIG_BUILDTIME_TABLE_SORT=y
    
    #
    # General setup
    #
    CONFIG_BROKEN_ON_SMP=y
    CONFIG_INIT_ENV_ARG_LIMIT=32
    # CONFIG_COMPILE_TEST is not set
    CONFIG_LOCALVERSION=""
    # CONFIG_LOCALVERSION_AUTO is not set
    CONFIG_BUILD_SALT=""
    CONFIG_HAVE_KERNEL_GZIP=y
    CONFIG_HAVE_KERNEL_LZMA=y
    CONFIG_HAVE_KERNEL_XZ=y
    CONFIG_HAVE_KERNEL_LZO=y
    CONFIG_HAVE_KERNEL_LZ4=y
    # CONFIG_KERNEL_GZIP is not set
    # CONFIG_KERNEL_LZMA is not set
    CONFIG_KERNEL_XZ=y
    # CONFIG_KERNEL_LZO is not set
    # CONFIG_KERNEL_LZ4 is not set
    CONFIG_DEFAULT_INIT=""
    CONFIG_DEFAULT_HOSTNAME="localhost"
    # CONFIG_SWAP is not set
    CONFIG_SYSVIPC=y
    CONFIG_SYSVIPC_SYSCTL=y
    # CONFIG_POSIX_MQUEUE is not set
    # CONFIG_WATCH_QUEUE is not set
    CONFIG_CROSS_MEMORY_ATTACH=y
    # CONFIG_USELIB is not set
    # CONFIG_AUDIT is not set
    CONFIG_HAVE_ARCH_AUDITSYSCALL=y
    
    #
    # IRQ subsystem
    #
    CONFIG_GENERIC_IRQ_PROBE=y
    CONFIG_GENERIC_IRQ_SHOW=y
    CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
    CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
    CONFIG_HARDIRQS_SW_RESEND=y
    CONFIG_GENERIC_IRQ_CHIP=y
    CONFIG_IRQ_DOMAIN=y
    CONFIG_IRQ_DOMAIN_HIERARCHY=y
    CONFIG_HANDLE_DOMAIN_IRQ=y
    CONFIG_IRQ_FORCED_THREADING=y
    CONFIG_SPARSE_IRQ=y
    # CONFIG_GENERIC_IRQ_DEBUGFS is not set
    # end of IRQ subsystem
    
    CONFIG_GENERIC_IRQ_MULTI_HANDLER=y
    CONFIG_GENERIC_CLOCKEVENTS=y
    
    #
    # Timers subsystem
    #
    CONFIG_TICK_ONESHOT=y
    CONFIG_NO_HZ_COMMON=y
    # CONFIG_HZ_PERIODIC is not set
    CONFIG_NO_HZ_IDLE=y
    CONFIG_NO_HZ=y
    CONFIG_HIGH_RES_TIMERS=y
    # end of Timers subsystem
    
    # CONFIG_PREEMPT_NONE is not set
    CONFIG_PREEMPT_VOLUNTARY=y
    # CONFIG_PREEMPT is not set
    
    #
    # CPU/Task time and stats accounting
    #
    CONFIG_TICK_CPU_ACCOUNTING=y
    # CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set
    # CONFIG_IRQ_TIME_ACCOUNTING is not set
    # CONFIG_BSD_PROCESS_ACCT is not set
    # CONFIG_TASKSTATS is not set
    # CONFIG_PSI is not set
    # end of CPU/Task time and stats accounting
    
    #
    # RCU Subsystem
    #
    CONFIG_TINY_RCU=y
    # CONFIG_RCU_EXPERT is not set
    CONFIG_SRCU=y
    CONFIG_TINY_SRCU=y
    # end of RCU Subsystem
    
    # CONFIG_IKCONFIG is not set
    # CONFIG_IKHEADERS is not set
    CONFIG_LOG_BUF_SHIFT=14
    CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
    CONFIG_GENERIC_SCHED_CLOCK=y
    
    #
    # Scheduler features
    #
    # end of Scheduler features
    
    # CONFIG_CGROUPS is not set
    # CONFIG_NAMESPACES is not set
    # CONFIG_CHECKPOINT_RESTORE is not set
    # CONFIG_SCHED_AUTOGROUP is not set
    # CONFIG_SYSFS_DEPRECATED is not set
    # CONFIG_RELAY is not set
    # CONFIG_BLK_DEV_INITRD is not set
    # CONFIG_BOOT_CONFIG is not set
    # CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE is not set
    CONFIG_CC_OPTIMIZE_FOR_SIZE=y
    CONFIG_LD_ORPHAN_WARN=y
    CONFIG_SYSCTL=y
    CONFIG_HAVE_UID16=y
    CONFIG_BPF=y
    CONFIG_EXPERT=y
    CONFIG_UID16=y
    CONFIG_MULTIUSER=y
    # CONFIG_SGETMASK_SYSCALL is not set
    CONFIG_SYSFS_SYSCALL=y
    CONFIG_FHANDLE=y
    CONFIG_POSIX_TIMERS=y
    CONFIG_PRINTK=y
    CONFIG_PRINTK_NMI=y
    # CONFIG_BUG is not set
    CONFIG_ELF_CORE=y
    # CONFIG_BASE_FULL is not set
    CONFIG_FUTEX=y
    CONFIG_FUTEX_PI=y
    CONFIG_HAVE_FUTEX_CMPXCHG=y
    CONFIG_EPOLL=y
    CONFIG_SIGNALFD=y
    CONFIG_TIMERFD=y
    CONFIG_EVENTFD=y
    CONFIG_SHMEM=y
    CONFIG_AIO=y
    # CONFIG_IO_URING is not set
    CONFIG_ADVISE_SYSCALLS=y
    CONFIG_MEMBARRIER=y
    CONFIG_KALLSYMS=y
    # CONFIG_KALLSYMS_ALL is not set
    CONFIG_KALLSYMS_BASE_RELATIVE=y
    # CONFIG_BPF_SYSCALL is not set
    # CONFIG_USERFAULTFD is not set
    CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
    CONFIG_KCMP=y
    CONFIG_RSEQ=y
    # CONFIG_DEBUG_RSEQ is not set
    CONFIG_EMBEDDED=y
    CONFIG_HAVE_PERF_EVENTS=y
    CONFIG_PERF_USE_VMALLOC=y
    # CONFIG_PC104 is not set
    
    #
    # Kernel Performance Events And Counters
    #
    # CONFIG_PERF_EVENTS is not set
    # end of Kernel Performance Events And Counters
    
    # CONFIG_VM_EVENT_COUNTERS is not set
    CONFIG_SLUB_SYSFS=y
    # CONFIG_SLUB_DEBUG is not set
    CONFIG_COMPAT_BRK=y
    # CONFIG_SLAB is not set
    CONFIG_SLUB=y
    # CONFIG_SLOB is not set
    CONFIG_SLAB_MERGE_DEFAULT=y
    # CONFIG_SLAB_FREELIST_RANDOM is not set
    # CONFIG_SLAB_FREELIST_HARDENED is not set
    # CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
    CONFIG_SYSTEM_DATA_VERIFICATION=y
    # CONFIG_PROFILING is not set
    # end of General setup
    
    CONFIG_ARM=y
    CONFIG_ARM_HAS_SG_CHAIN=y
    CONFIG_SYS_SUPPORTS_APM_EMULATION=y
    CONFIG_HAVE_PROC_CPU=y
    CONFIG_STACKTRACE_SUPPORT=y
    CONFIG_LOCKDEP_SUPPORT=y
    CONFIG_TRACE_IRQFLAGS_SUPPORT=y
    CONFIG_FIX_EARLYCON_MEM=y
    CONFIG_GENERIC_HWEIGHT=y
    CONFIG_GENERIC_CALIBRATE_DELAY=y
    CONFIG_ARCH_SUPPORTS_UPROBES=y
    CONFIG_FIQ=y
    CONFIG_ARM_PATCH_PHYS_VIRT=y
    CONFIG_PGTABLE_LEVELS=2
    
    #
    # System Type
    #
    CONFIG_MMU=y
    CONFIG_ARCH_MMAP_RND_BITS_MIN=8
    CONFIG_ARCH_MMAP_RND_BITS_MAX=16
    CONFIG_ARCH_MULTIPLATFORM=y
    # CONFIG_ARCH_EBSA110 is not set
    # CONFIG_ARCH_EP93XX is not set
    # CONFIG_ARCH_FOOTBRIDGE is not set
    # CONFIG_ARCH_IOP32X is not set
    # CONFIG_ARCH_IXP4XX is not set
    # CONFIG_ARCH_DOVE is not set
    # CONFIG_ARCH_PXA is not set
    # CONFIG_ARCH_RPC is not set
    # CONFIG_ARCH_SA1100 is not set
    # CONFIG_ARCH_S3C24XX is not set
    # CONFIG_ARCH_OMAP1 is not set
    
    #
    # Multiple platform selection
    #
    
    #
    # CPU Core family selection
    #
    # CONFIG_ARCH_MULTI_V6 is not set
    CONFIG_ARCH_MULTI_V7=y
    CONFIG_ARCH_MULTI_V6_V7=y
    # end of Multiple platform selection
    
    # CONFIG_ARCH_VIRT is not set
    # CONFIG_ARCH_ACTIONS is not set
    # CONFIG_ARCH_ALPINE is not set
    # CONFIG_ARCH_ARTPEC is not set
    # CONFIG_ARCH_ASPEED is not set
    # CONFIG_ARCH_AT91 is not set
    # CONFIG_ARCH_BCM is not set
    # CONFIG_ARCH_BERLIN is not set
    # CONFIG_ARCH_DIGICOLOR is not set
    # CONFIG_ARCH_EXYNOS is not set
    # CONFIG_ARCH_HIGHBANK is not set
    # CONFIG_ARCH_HISI is not set
    # CONFIG_ARCH_MXC is not set
    # CONFIG_ARCH_KEYSTONE is not set
    # CONFIG_ARCH_MEDIATEK is not set
    # CONFIG_ARCH_MESON is not set
    # CONFIG_ARCH_MILBEAUT is not set
    # CONFIG_ARCH_MMP is not set
    # CONFIG_ARCH_MSTARV7 is not set
    # CONFIG_ARCH_MVEBU is not set
    # CONFIG_ARCH_NPCM is not set
    
    #
    # TI OMAP/AM/DM/DRA Family
    #
    # CONFIG_ARCH_OMAP3 is not set
    # CONFIG_ARCH_OMAP4 is not set
    # CONFIG_SOC_OMAP5 is not set
    # CONFIG_SOC_AM33XX is not set
    # CONFIG_SOC_AM43XX is not set
    # CONFIG_SOC_DRA7XX is not set
    # end of TI OMAP/AM/DM/DRA Family
    
    # CONFIG_ARCH_SIRF is not set
    # CONFIG_ARCH_QCOM is not set
    # CONFIG_ARCH_RDA is not set
    # CONFIG_ARCH_REALTEK is not set
    # CONFIG_ARCH_REALVIEW is not set
    CONFIG_ARCH_ROCKCHIP=y
    # CONFIG_ARCH_S5PV210 is not set
    # CONFIG_ARCH_RENESAS is not set
    # CONFIG_ARCH_SOCFPGA is not set
    # CONFIG_PLAT_SPEAR is not set
    # CONFIG_ARCH_STI is not set
    # CONFIG_ARCH_STM32 is not set
    # CONFIG_ARCH_SUNXI is not set
    # CONFIG_ARCH_TANGO is not set
    # CONFIG_ARCH_TEGRA is not set
    # CONFIG_ARCH_UNIPHIER is not set
    # CONFIG_ARCH_U8500 is not set
    # CONFIG_ARCH_VEXPRESS is not set
    # CONFIG_ARCH_WM8850 is not set
    # CONFIG_ARCH_ZX is not set
    # CONFIG_ARCH_ZYNQ is not set
    
    #
    # Processor Type
    #
    CONFIG_CPU_V7=y
    CONFIG_CPU_THUMB_CAPABLE=y
    CONFIG_CPU_32v6K=y
    CONFIG_CPU_32v7=y
    CONFIG_CPU_ABRT_EV7=y
    CONFIG_CPU_PABRT_V7=y
    CONFIG_CPU_CACHE_V7=y
    CONFIG_CPU_CACHE_VIPT=y
    CONFIG_CPU_COPY_V6=y
    CONFIG_CPU_TLB_V7=y
    CONFIG_CPU_HAS_ASID=y
    CONFIG_CPU_CP15=y
    CONFIG_CPU_CP15_MMU=y
    
    #
    # Processor Features
    #
    # CONFIG_ARM_LPAE is not set
    CONFIG_ARM_THUMB=y
    # CONFIG_ARM_THUMBEE is not set
    CONFIG_ARM_VIRT_EXT=y
    # CONFIG_SWP_EMULATE is not set
    # CONFIG_CPU_ICACHE_DISABLE is not set
    # CONFIG_CPU_DCACHE_DISABLE is not set
    # CONFIG_CPU_BPREDICT_DISABLE is not set
    CONFIG_CPU_SPECTRE=y
    CONFIG_HARDEN_BRANCH_PREDICTOR=y
    CONFIG_HARDEN_BRANCH_HISTORY=y
    CONFIG_KUSER_HELPERS=y
    # CONFIG_VDSO is not set
    CONFIG_OUTER_CACHE=y
    CONFIG_OUTER_CACHE_SYNC=y
    CONFIG_MIGHT_HAVE_CACHE_L2X0=y
    CONFIG_CACHE_L2X0=y
    # CONFIG_PL310_ERRATA_588369 is not set
    # CONFIG_PL310_ERRATA_727915 is not set
    # CONFIG_PL310_ERRATA_753970 is not set
    # CONFIG_PL310_ERRATA_769419 is not set
    CONFIG_ARM_L1_CACHE_SHIFT_6=y
    CONFIG_ARM_L1_CACHE_SHIFT=6
    CONFIG_ARM_DMA_MEM_BUFFERABLE=y
    CONFIG_ARM_HEAVY_MB=y
    # CONFIG_ARM_ERRATA_430973 is not set
    # CONFIG_ARM_ERRATA_720789 is not set
    # CONFIG_ARM_ERRATA_754322 is not set
    # CONFIG_ARM_ERRATA_775420 is not set
    # CONFIG_ARM_ERRATA_773022 is not set
    # CONFIG_ARM_ERRATA_818325_852422 is not set
    # CONFIG_ARM_ERRATA_821420 is not set
    # CONFIG_ARM_ERRATA_825619 is not set
    # CONFIG_ARM_ERRATA_857271 is not set
    # CONFIG_ARM_ERRATA_852421 is not set
    # CONFIG_ARM_ERRATA_852423 is not set
    # CONFIG_ARM_ERRATA_857272 is not set
    # end of System Type
    
    CONFIG_FIQ_GLUE=y
    
    #
    # Bus support
    #
    # CONFIG_ARM_ERRATA_814220 is not set
    # end of Bus support
    
    #
    # Kernel Features
    #
    CONFIG_HAVE_SMP=y
    # CONFIG_SMP is not set
    CONFIG_HAVE_ARM_ARCH_TIMER=y
    # CONFIG_VMSPLIT_3G is not set
    CONFIG_VMSPLIT_3G_OPT=y
    # CONFIG_VMSPLIT_2G is not set
    # CONFIG_VMSPLIT_1G is not set
    CONFIG_PAGE_OFFSET=0xB0000000
    # CONFIG_ARM_PSCI is not set
    CONFIG_ARCH_NR_GPIO=288
    CONFIG_HZ_FIXED=0
    # CONFIG_HZ_100 is not set
    # CONFIG_HZ_200 is not set
    # CONFIG_HZ_250 is not set
    CONFIG_HZ_300=y
    # CONFIG_HZ_500 is not set
    # CONFIG_HZ_1000 is not set
    CONFIG_HZ=300
    CONFIG_SCHED_HRTICK=y
    CONFIG_THUMB2_KERNEL=y
    CONFIG_ARM_PATCH_IDIV=y
    CONFIG_AEABI=y
    CONFIG_ARCH_SELECT_MEMORY_MODEL=y
    CONFIG_ARCH_FLATMEM_ENABLE=y
    CONFIG_ARCH_SPARSEMEM_ENABLE=y
    CONFIG_HAVE_ARCH_PFN_VALID=y
    # CONFIG_HIGHMEM is not set
    # CONFIG_CPU_SW_DOMAIN_PAN is not set
    CONFIG_ARCH_WANT_GENERAL_HUGETLB=y
    CONFIG_ARM_MODULE_PLTS=y
    CONFIG_FORCE_MAX_ZONEORDER=9
    CONFIG_ALIGNMENT_TRAP=y
    CONFIG_UACCESS_WITH_MEMCPY=y
    # CONFIG_PARAVIRT is not set
    # CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
    # CONFIG_XEN is not set
    # end of Kernel Features
    
    #
    # Boot options
    #
    CONFIG_USE_OF=y
    CONFIG_ATAGS=y
    # CONFIG_DEPRECATED_PARAM_STRUCT is not set
    CONFIG_ZBOOT_ROM_TEXT=0x0
    CONFIG_ZBOOT_ROM_BSS=0x0
    # CONFIG_ARM_APPENDED_DTB is not set
    CONFIG_CMDLINE="user_debug=31"
    # CONFIG_CMDLINE_FROM_BOOTLOADER is not set
    CONFIG_CMDLINE_EXTEND=y
    # CONFIG_CMDLINE_FORCE is not set
    # CONFIG_KEXEC is not set
    # CONFIG_CRASH_DUMP is not set
    CONFIG_AUTO_ZRELADDR=y
    # CONFIG_EFI is not set
    # end of Boot options
    
    #
    # CPU Power Management
    #
    
    #
    # CPU Frequency scaling
    #
    CONFIG_CPU_FREQ=y
    CONFIG_CPU_FREQ_GOV_ATTR_SET=y
    CONFIG_CPU_FREQ_GOV_COMMON=y
    # CONFIG_CPU_FREQ_STAT is not set
    # CONFIG_CPU_FREQ_TIMES is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
    CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
    # CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
    # CONFIG_CPU_FREQ_DEFAULT_GOV_INTERACTIVE is not set
    CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
    # CONFIG_CPU_FREQ_GOV_POWERSAVE is not set
    CONFIG_CPU_FREQ_GOV_USERSPACE=y
    CONFIG_CPU_FREQ_GOV_ONDEMAND=y
    # CONFIG_CPU_FREQ_GOV_CONSERVATIVE is not set
    # CONFIG_CPU_FREQ_GOV_INTERACTIVE is not set
    
    #
    # CPU frequency scaling drivers
    #
    CONFIG_CPUFREQ_DT=y
    # CONFIG_CPUFREQ_DUMMY is not set
    CONFIG_ARM_ROCKCHIP_CPUFREQ=y
    # end of CPU Frequency scaling
    
    #
    # CPU Idle
    #
    CONFIG_CPU_IDLE=y
    # CONFIG_CPU_IDLE_GOV_LADDER is not set
    CONFIG_CPU_IDLE_GOV_MENU=y
    # CONFIG_CPU_IDLE_GOV_TEO is not set
    
    #
    # ARM CPU Idle Drivers
    #
    # CONFIG_ARM_CPUIDLE is not set
    # end of ARM CPU Idle Drivers
    # end of CPU Idle
    # end of CPU Power Management
    
    #
    # Floating point emulation
    #
    
    #
    # At least one emulation must be selected
    #
    CONFIG_VFP=y
    CONFIG_VFPv3=y
    CONFIG_NEON=y
    # CONFIG_KERNEL_MODE_NEON is not set
    # end of Floating point emulation
    
    #
    # Power management options
    #
    # CONFIG_SUSPEND is not set
    CONFIG_PM=y
    # CONFIG_PM_DEBUG is not set
    # CONFIG_APM_EMULATION is not set
    CONFIG_PM_CLK=y
    # CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
    CONFIG_CPU_PM=y
    CONFIG_ARCH_SUSPEND_POSSIBLE=y
    CONFIG_ARCH_HIBERNATION_POSSIBLE=y
    # end of Power management options
    
    #
    # Firmware Drivers
    #
    # CONFIG_FIRMWARE_MEMMAP is not set
    # CONFIG_FW_CFG_SYSFS is not set
    # CONFIG_QCOM_SCM is not set
    # CONFIG_ROCKCHIP_SIP is not set
    # CONFIG_TRUSTED_FOUNDATIONS is not set
    # CONFIG_GOOGLE_FIRMWARE is not set
    CONFIG_HAVE_ARM_SMCCC=y
    
    #
    # Tegra firmware driver
    #
    # end of Tegra firmware driver
    # end of Firmware Drivers
    
    # CONFIG_ARM_CRYPTO is not set
    
    #
    # General architecture-dependent options
    #
    CONFIG_SET_FS=y
    CONFIG_HAVE_OPROFILE=y
    # CONFIG_KPROBES is not set
    CONFIG_JUMP_LABEL=y
    # CONFIG_STATIC_KEYS_SELFTEST is not set
    CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
    CONFIG_ARCH_USE_BUILTIN_BSWAP=y
    CONFIG_HAVE_KPROBES=y
    CONFIG_HAVE_KRETPROBES=y
    CONFIG_HAVE_NMI=y
    CONFIG_HAVE_ARCH_TRACEHOOK=y
    CONFIG_HAVE_DMA_CONTIGUOUS=y
    CONFIG_GENERIC_SMP_IDLE_THREAD=y
    CONFIG_GENERIC_IDLE_POLL_SETUP=y
    CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
    CONFIG_ARCH_HAS_KEEPINITRD=y
    CONFIG_ARCH_HAS_SET_MEMORY=y
    CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
    CONFIG_ARCH_32BIT_OFF_T=y
    CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
    CONFIG_HAVE_RSEQ=y
    CONFIG_HAVE_PERF_REGS=y
    CONFIG_HAVE_PERF_USER_STACK_DUMP=y
    CONFIG_HAVE_ARCH_JUMP_LABEL=y
    CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
    CONFIG_HAVE_ARCH_SECCOMP=y
    CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
    CONFIG_SECCOMP=y
    CONFIG_SECCOMP_FILTER=y
    CONFIG_HAVE_STACKPROTECTOR=y
    CONFIG_STACKPROTECTOR=y
    # CONFIG_STACKPROTECTOR_STRONG is not set
    CONFIG_LTO_NONE=y
    CONFIG_HAVE_CONTEXT_TRACKING=y
    CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
    CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
    CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
    CONFIG_MODULES_USE_ELF_REL=y
    CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
    CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
    CONFIG_HAVE_EXIT_THREAD=y
    CONFIG_ARCH_MMAP_RND_BITS=8
    CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y
    CONFIG_CLONE_BACKWARDS=y
    CONFIG_OLD_SIGSUSPEND3=y
    CONFIG_OLD_SIGACTION=y
    CONFIG_COMPAT_32BIT_TIME=y
    CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y
    CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y
    CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
    # CONFIG_STRICT_KERNEL_RWX is not set
    CONFIG_ARCH_HAS_PHYS_TO_DMA=y
    # CONFIG_LOCK_EVENT_COUNTS is not set
    CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
    
    #
    # GCOV-based kernel profiling
    #
    # CONFIG_GCOV_KERNEL is not set
    CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
    # end of GCOV-based kernel profiling
    
    CONFIG_HAVE_GCC_PLUGINS=y
    # end of General architecture-dependent options
    
    CONFIG_RT_MUTEXES=y
    CONFIG_BASE_SMALL=1
    CONFIG_MODULES=y
    # CONFIG_MODULE_FORCE_LOAD is not set
    CONFIG_MODULE_UNLOAD=y
    # CONFIG_MODULE_FORCE_UNLOAD is not set
    # CONFIG_MODVERSIONS is not set
    # CONFIG_MODULE_SRCVERSION_ALL is not set
    # CONFIG_MODULE_SIG is not set
    # CONFIG_MODULE_COMPRESS is not set
    # CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
    # CONFIG_UNUSED_SYMBOLS is not set
    # CONFIG_TRIM_UNUSED_KSYMS is not set
    CONFIG_BLOCK=y
    # CONFIG_BLK_DEV_BSG is not set
    # CONFIG_BLK_DEV_BSGLIB is not set
    # CONFIG_BLK_DEV_INTEGRITY is not set
    # CONFIG_BLK_DEV_ZONED is not set
    CONFIG_BLK_CMDLINE_PARSER=y
    # CONFIG_BLK_WBT is not set
    CONFIG_BLK_DEBUG_FS=y
    # CONFIG_BLK_SED_OPAL is not set
    # CONFIG_BLK_INLINE_ENCRYPTION is not set
    
    #
    # Partition Types
    #
    CONFIG_PARTITION_ADVANCED=y
    # CONFIG_ACORN_PARTITION is not set
    # CONFIG_AIX_PARTITION is not set
    # CONFIG_OSF_PARTITION is not set
    # CONFIG_AMIGA_PARTITION is not set
    # CONFIG_ATARI_PARTITION is not set
    # CONFIG_MAC_PARTITION is not set
    CONFIG_MSDOS_PARTITION=y
    # CONFIG_BSD_DISKLABEL is not set
    # CONFIG_MINIX_SUBPARTITION is not set
    # CONFIG_SOLARIS_X86_PARTITION is not set
    # CONFIG_UNIXWARE_DISKLABEL is not set
    # CONFIG_LDM_PARTITION is not set
    # CONFIG_SGI_PARTITION is not set
    # CONFIG_ULTRIX_PARTITION is not set
    # CONFIG_SUN_PARTITION is not set
    # CONFIG_KARMA_PARTITION is not set
    # CONFIG_EFI_PARTITION is not set
    # CONFIG_SYSV68_PARTITION is not set
    CONFIG_CMDLINE_PARTITION=y
    # end of Partition Types
    
    CONFIG_BLK_PM=y
    
    #
    # IO Schedulers
    #
    CONFIG_MQ_IOSCHED_DEADLINE=y
    # CONFIG_MQ_IOSCHED_KYBER is not set
    # CONFIG_IOSCHED_BFQ is not set
    # end of IO Schedulers
    
    CONFIG_ASN1=y
    CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
    CONFIG_INLINE_READ_UNLOCK=y
    CONFIG_INLINE_READ_UNLOCK_IRQ=y
    CONFIG_INLINE_WRITE_UNLOCK=y
    CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
    CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
    CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
    
    #
    # Executable file formats
    #
    CONFIG_BINFMT_ELF=y
    # CONFIG_BINFMT_ELF_FDPIC is not set
    CONFIG_ELFCORE=y
    CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
    CONFIG_BINFMT_SCRIPT=y
    CONFIG_ARCH_HAS_BINFMT_FLAT=y
    # CONFIG_BINFMT_FLAT is not set
    CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y
    # CONFIG_BINFMT_MISC is not set
    CONFIG_COREDUMP=y
    # end of Executable file formats
    
    #
    # Memory Management options
    #
    CONFIG_SELECT_MEMORY_MODEL=y
    CONFIG_FLATMEM_MANUAL=y
    # CONFIG_SPARSEMEM_MANUAL is not set
    CONFIG_FLATMEM=y
    CONFIG_FLAT_NODE_MEM_MAP=y
    CONFIG_ARCH_KEEP_MEMBLOCK=y
    CONFIG_MEMORY_ISOLATION=y
    CONFIG_SPLIT_PTLOCK_CPUS=4
    CONFIG_COMPACTION=y
    # CONFIG_PAGE_REPORTING is not set
    CONFIG_MIGRATION=y
    CONFIG_CONTIG_ALLOC=y
    CONFIG_KSM=y
    CONFIG_DEFAULT_MMAP_MIN_ADDR=32768
    CONFIG_NEED_PER_CPU_KM=y
    # CONFIG_CLEANCACHE is not set
    CONFIG_CMA=y
    CONFIG_CMA_INACTIVE=y
    # CONFIG_CMA_DEBUG is not set
    # CONFIG_CMA_DEBUGFS is not set
    # CONFIG_CMA_SYSFS is not set
    CONFIG_CMA_AREAS=7
    # CONFIG_ZPOOL is not set
    # CONFIG_ZBUD is not set
    # CONFIG_ZSMALLOC is not set
    CONFIG_GENERIC_EARLY_IOREMAP=y
    # CONFIG_IDLE_PAGE_TRACKING is not set
    CONFIG_FRAME_VECTOR=y
    # CONFIG_PERCPU_STATS is not set
    # CONFIG_GUP_BENCHMARK is not set
    
    #
    # Data Access Monitoring
    #
    # CONFIG_DAMON is not set
    # end of Data Access Monitoring
    # end of Memory Management options
    
    CONFIG_NET=y
    
    #
    # Networking options
    #
    CONFIG_PACKET=y
    # CONFIG_PACKET_DIAG is not set
    CONFIG_UNIX=y
    CONFIG_UNIX_SCM=y
    # CONFIG_UNIX_DIAG is not set
    # CONFIG_TLS is not set
    # CONFIG_XFRM_USER is not set
    # CONFIG_NET_KEY is not set
    CONFIG_INET=y
    # CONFIG_IP_MULTICAST is not set
    # CONFIG_IP_ADVANCED_ROUTER is not set
    # CONFIG_IP_PNP is not set
    # CONFIG_NET_IPIP is not set
    # CONFIG_NET_IPGRE_DEMUX is not set
    # CONFIG_SYN_COOKIES is not set
    # CONFIG_NET_IPVTI is not set
    # CONFIG_NET_FOU is not set
    # CONFIG_INET_AH is not set
    # CONFIG_INET_ESP is not set
    # CONFIG_INET_IPCOMP is not set
    # CONFIG_INET_DIAG is not set
    # CONFIG_TCP_CONG_ADVANCED is not set
    CONFIG_TCP_CONG_CUBIC=y
    CONFIG_DEFAULT_TCP_CONG="cubic"
    # CONFIG_TCP_MD5SIG is not set
    CONFIG_IPV6=m
    # CONFIG_IPV6_ROUTER_PREF is not set
    # CONFIG_IPV6_OPTIMISTIC_DAD is not set
    # CONFIG_INET6_AH is not set
    # CONFIG_INET6_ESP is not set
    # CONFIG_INET6_IPCOMP is not set
    # CONFIG_IPV6_MIP6 is not set
    # CONFIG_IPV6_VTI is not set
    # CONFIG_IPV6_SIT is not set
    # CONFIG_IPV6_TUNNEL is not set
    # CONFIG_IPV6_MULTIPLE_TABLES is not set
    # CONFIG_IPV6_MROUTE is not set
    # CONFIG_IPV6_SEG6_LWTUNNEL is not set
    # CONFIG_IPV6_SEG6_HMAC is not set
    # CONFIG_IPV6_RPL_LWTUNNEL is not set
    # CONFIG_MPTCP is not set
    # CONFIG_NETWORK_SECMARK is not set
    # CONFIG_NETWORK_PHY_TIMESTAMPING is not set
    # CONFIG_NETFILTER is not set
    # CONFIG_BPFILTER is not set
    # CONFIG_IP_DCCP is not set
    # CONFIG_IP_SCTP is not set
    # CONFIG_RDS is not set
    # CONFIG_TIPC is not set
    # CONFIG_ATM is not set
    # CONFIG_L2TP is not set
    # CONFIG_BRIDGE is not set
    CONFIG_HAVE_NET_DSA=y
    # CONFIG_NET_DSA is not set
    # CONFIG_VLAN_8021Q is not set
    # CONFIG_DECNET is not set
    # CONFIG_LLC2 is not set
    # CONFIG_ATALK is not set
    # CONFIG_X25 is not set
    # CONFIG_LAPB is not set
    # CONFIG_PHONET is not set
    # CONFIG_6LOWPAN is not set
    # CONFIG_IEEE802154 is not set
    # CONFIG_NET_SCHED is not set
    # CONFIG_DCB is not set
    CONFIG_DNS_RESOLVER=y
    # CONFIG_BATMAN_ADV is not set
    # CONFIG_OPENVSWITCH is not set
    # CONFIG_VSOCKETS is not set
    # CONFIG_NETLINK_DIAG is not set
    # CONFIG_MPLS is not set
    # CONFIG_NET_NSH is not set
    # CONFIG_HSR is not set
    # CONFIG_NET_SWITCHDEV is not set
    # CONFIG_NET_L3_MASTER_DEV is not set
    # CONFIG_QRTR is not set
    # CONFIG_NET_NCSI is not set
    CONFIG_NET_RX_BUSY_POLL=y
    CONFIG_BQL=y
    # CONFIG_BPF_JIT is not set
    
    #
    # Network testing
    #
    # CONFIG_NET_PKTGEN is not set
    # end of Network testing
    # end of Networking options
    
    # CONFIG_HAMRADIO is not set
    # CONFIG_CAN is not set
    # CONFIG_BT is not set
    # CONFIG_AF_RXRPC is not set
    # CONFIG_AF_KCM is not set
    CONFIG_WIRELESS=y
    CONFIG_WIRELESS_EXT=y
    CONFIG_WEXT_CORE=y
    CONFIG_WEXT_PROC=y
    CONFIG_WEXT_PRIV=y
    CONFIG_CFG80211=m
    # CONFIG_NL80211_TESTMODE is not set
    # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
    # CONFIG_CFG80211_CERTIFICATION_ONUS is not set
    CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y
    CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y
    CONFIG_CFG80211_DEFAULT_PS=y
    # CONFIG_CFG80211_DEBUGFS is not set
    CONFIG_CFG80211_CRDA_SUPPORT=y
    # CONFIG_CFG80211_WEXT is not set
    CONFIG_MAC80211=m
    CONFIG_MAC80211_HAS_RC=y
    CONFIG_MAC80211_RC_MINSTREL=y
    CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
    CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
    # CONFIG_MAC80211_MESH is not set
    # CONFIG_MAC80211_LEDS is not set
    # CONFIG_MAC80211_DEBUGFS is not set
    # CONFIG_MAC80211_MESSAGE_TRACING is not set
    # CONFIG_MAC80211_DEBUG_MENU is not set
    CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
    # CONFIG_WIMAX is not set
    # CONFIG_RFKILL is not set
    # CONFIG_NET_9P is not set
    # CONFIG_CAIF is not set
    # CONFIG_CEPH_LIB is not set
    # CONFIG_NFC is not set
    # CONFIG_PSAMPLE is not set
    # CONFIG_NET_IFE is not set
    # CONFIG_LWTUNNEL is not set
    CONFIG_PAGE_POOL=y
    # CONFIG_FAILOVER is not set
    CONFIG_ETHTOOL_NETLINK=y
    CONFIG_HAVE_EBPF_JIT=y
    
    #
    # Device Drivers
    #
    CONFIG_ARM_AMBA=y
    CONFIG_HAVE_PCI=y
    # CONFIG_PCI is not set
    # CONFIG_PCCARD is not set
    
    #
    # Generic Driver Options
    #
    # CONFIG_UEVENT_HELPER is not set
    CONFIG_DEVTMPFS=y
    CONFIG_DEVTMPFS_MOUNT=y
    CONFIG_STANDALONE=y
    CONFIG_PREVENT_FIRMWARE_BUILD=y
    
    #
    # Firmware loader
    #
    CONFIG_FW_LOADER=y
    CONFIG_EXTRA_FIRMWARE=""
    # CONFIG_FW_LOADER_USER_HELPER is not set
    # CONFIG_FW_LOADER_COMPRESS is not set
    # end of Firmware loader
    
    # CONFIG_ALLOW_DEV_COREDUMP is not set
    # CONFIG_DEBUG_DRIVER is not set
    # CONFIG_DEBUG_DEVRES is not set
    # CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set
    # CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
    CONFIG_GENERIC_CPU_AUTOPROBE=y
    CONFIG_GENERIC_CPU_VULNERABILITIES=y
    CONFIG_REGMAP=y
    CONFIG_REGMAP_I2C=y
    CONFIG_REGMAP_SPI=y
    CONFIG_REGMAP_MMIO=y
    # CONFIG_MALI_BASE_MODULES is not set
    CONFIG_DMA_SHARED_BUFFER=y
    # CONFIG_DMA_FENCE_TRACE is not set
    # end of Generic Driver Options
    
    #
    # Bus devices
    #
    # CONFIG_BRCMSTB_GISB_ARB is not set
    # CONFIG_MOXTET is not set
    # CONFIG_SIMPLE_PM_BUS is not set
    # CONFIG_VEXPRESS_CONFIG is not set
    # CONFIG_MHI_BUS is not set
    # end of Bus devices
    
    # CONFIG_CONNECTOR is not set
    # CONFIG_GNSS is not set
    CONFIG_MTD=y
    # CONFIG_MTD_TESTS is not set
    
    #
    # Partition parsers
    #
    # CONFIG_MTD_AR7_PARTS is not set
    CONFIG_MTD_CMDLINE_PARTS=y
    # CONFIG_MTD_OF_PARTS is not set
    # CONFIG_MTD_AFS_PARTS is not set
    # CONFIG_MTD_REDBOOT_PARTS is not set
    # end of Partition parsers
    
    #
    # User Modules And Translation Layers
    #
    CONFIG_MTD_BLKDEVS=y
    CONFIG_MTD_BLOCK=y
    # CONFIG_FTL is not set
    # CONFIG_NFTL is not set
    # CONFIG_INFTL is not set
    # CONFIG_RFD_FTL is not set
    # CONFIG_SSFDC is not set
    # CONFIG_SM_FTL is not set
    # CONFIG_MTD_OOPS is not set
    # CONFIG_MTD_PARTITIONED_MASTER is not set
    
    #
    # RAM/ROM/Flash chip drivers
    #
    # CONFIG_MTD_CFI is not set
    # CONFIG_MTD_JEDECPROBE is not set
    CONFIG_MTD_MAP_BANK_WIDTH_1=y
    CONFIG_MTD_MAP_BANK_WIDTH_2=y
    CONFIG_MTD_MAP_BANK_WIDTH_4=y
    CONFIG_MTD_CFI_I1=y
    CONFIG_MTD_CFI_I2=y
    # CONFIG_MTD_RAM is not set
    # CONFIG_MTD_ROM is not set
    # CONFIG_MTD_ABSENT is not set
    # end of RAM/ROM/Flash chip drivers
    
    #
    # Mapping drivers for chip access
    #
    # CONFIG_MTD_COMPLEX_MAPPINGS is not set
    # CONFIG_MTD_PLATRAM is not set
    # end of Mapping drivers for chip access
    
    #
    # Self-contained MTD device drivers
    #
    # CONFIG_MTD_DATAFLASH is not set
    # CONFIG_MTD_MCHP23K256 is not set
    # CONFIG_MTD_SST25L is not set
    # CONFIG_MTD_SLRAM is not set
    # CONFIG_MTD_PHRAM is not set
    # CONFIG_MTD_MTDRAM is not set
    # CONFIG_MTD_BLOCK2MTD is not set
    
    #
    # Disk-On-Chip Device Drivers
    #
    # CONFIG_MTD_DOCG3 is not set
    # end of Self-contained MTD device drivers
    
    #
    # NAND
    #
    CONFIG_MTD_NAND_CORE=y
    # CONFIG_MTD_ONENAND is not set
    # CONFIG_MTD_RAW_NAND is not set
    CONFIG_MTD_SPI_NAND=y
    
    #
    # ECC engine support
    #
    CONFIG_MTD_NAND_BBT_USING_FLASH=y
    # end of ECC engine support
    # end of NAND
    
    #
    # LPDDR & LPDDR2 PCM memory drivers
    #
    # CONFIG_MTD_LPDDR is not set
    # CONFIG_MTD_LPDDR2_NVM is not set
    # end of LPDDR & LPDDR2 PCM memory drivers
    
    CONFIG_MTD_SPI_NOR=y
    # CONFIG_MTD_SPI_NOR_USE_4K_SECTORS is not set
    CONFIG_MTD_SPI_NOR_MISC=y
    CONFIG_MTD_UBI=y
    CONFIG_MTD_UBI_WL_THRESHOLD=4096
    CONFIG_MTD_UBI_BEB_LIMIT=20
    # CONFIG_MTD_UBI_FASTMAP is not set
    # CONFIG_MTD_UBI_GLUEBI is not set
    CONFIG_MTD_UBI_BLOCK=y
    # CONFIG_MTD_HYPERBUS is not set
    CONFIG_DTC=y
    CONFIG_OF=y
    # CONFIG_DTC_SYMBOLS is not set
    CONFIG_DTC_OMIT_DISABLED=y
    CONFIG_DTC_OMIT_EMPTY=y
    # CONFIG_OF_UNITTEST is not set
    CONFIG_OF_FLATTREE=y
    CONFIG_OF_EARLY_FLATTREE=y
    CONFIG_OF_KOBJ=y
    CONFIG_OF_ADDRESS=y
    CONFIG_OF_IRQ=y
    CONFIG_OF_NET=y
    CONFIG_OF_RESERVED_MEM=y
    # CONFIG_OF_OVERLAY is not set
    CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y
    # CONFIG_PARPORT is not set
    CONFIG_BLK_DEV=y
    # CONFIG_BLK_DEV_NULL_BLK is not set
    # CONFIG_BLK_DEV_LOOP is not set
    # CONFIG_BLK_DEV_DRBD is not set
    # CONFIG_BLK_DEV_NBD is not set
    # CONFIG_BLK_DEV_RAM is not set
    # CONFIG_CDROM_PKTCDVD is not set
    # CONFIG_ATA_OVER_ETH is not set
    # CONFIG_BLK_DEV_RBD is not set
    
    #
    # NVME Support
    #
    # CONFIG_NVME_FC is not set
    # CONFIG_NVME_TCP is not set
    # CONFIG_NVME_TARGET is not set
    # end of NVME Support
    
    #
    # Misc devices
    #
    # CONFIG_RK803 is not set
    # CONFIG_AD525X_DPOT is not set
    # CONFIG_DUMMY_IRQ is not set
    # CONFIG_ICS932S401 is not set
    # CONFIG_ENCLOSURE_SERVICES is not set
    # CONFIG_APDS9802ALS is not set
    # CONFIG_ISL29003 is not set
    # CONFIG_ISL29020 is not set
    # CONFIG_SENSORS_TSL2550 is not set
    # CONFIG_SENSORS_BH1770 is not set
    # CONFIG_SENSORS_APDS990X is not set
    # CONFIG_HMC6352 is not set
    # CONFIG_DS1682 is not set
    # CONFIG_LATTICE_ECP3_CONFIG is not set
    # CONFIG_SRAM is not set
    # CONFIG_XILINX_SDFEC is not set
    # CONFIG_PVPANIC is not set
    # CONFIG_HISI_HIKEY_USB is not set
    # CONFIG_C2PORT is not set
    
    #
    # EEPROM support
    #
    # CONFIG_EEPROM_AT24 is not set
    # CONFIG_EEPROM_AT25 is not set
    # CONFIG_EEPROM_LEGACY is not set
    # CONFIG_EEPROM_MAX6875 is not set
    # CONFIG_EEPROM_93CX6 is not set
    # CONFIG_EEPROM_93XX46 is not set
    # CONFIG_EEPROM_IDT_89HPESX is not set
    # CONFIG_EEPROM_EE1004 is not set
    # end of EEPROM support
    
    #
    # Texas Instruments shared transport line discipline
    #
    # CONFIG_TI_ST is not set
    # end of Texas Instruments shared transport line discipline
    
    # CONFIG_SENSORS_LIS3_SPI is not set
    # CONFIG_SENSORS_LIS3_I2C is not set
    # CONFIG_ALTERA_STAPL is not set
    # CONFIG_ECHO is not set
    # CONFIG_MISC_RTSX_USB is not set
    # end of Misc devices
    
    #
    # SCSI device support
    #
    CONFIG_SCSI_MOD=y
    # CONFIG_RAID_ATTRS is not set
    # CONFIG_SCSI is not set
    # end of SCSI device support
    
    # CONFIG_ATA is not set
    # CONFIG_MD is not set
    # CONFIG_TARGET_CORE is not set
    CONFIG_NETDEVICES=y
    CONFIG_MII=y
    # CONFIG_NET_CORE is not set
    
    #
    # Distributed Switch Architecture drivers
    #
    # end of Distributed Switch Architecture drivers
    
    CONFIG_ETHERNET=y
    # CONFIG_NET_VENDOR_ALACRITECH is not set
    # CONFIG_ALTERA_TSE is not set
    # CONFIG_NET_VENDOR_AMAZON is not set
    # CONFIG_NET_VENDOR_AQUANTIA is not set
    # CONFIG_NET_VENDOR_ARC is not set
    # CONFIG_NET_VENDOR_AURORA is not set
    # CONFIG_NET_VENDOR_BROADCOM is not set
    # CONFIG_NET_VENDOR_CADENCE is not set
    # CONFIG_NET_VENDOR_CAVIUM is not set
    # CONFIG_NET_VENDOR_CIRRUS is not set
    # CONFIG_NET_VENDOR_CORTINA is not set
    # CONFIG_DM9000 is not set
    # CONFIG_DNET is not set
    # CONFIG_NET_VENDOR_EZCHIP is not set
    # CONFIG_NET_VENDOR_FARADAY is not set
    # CONFIG_NET_VENDOR_GOOGLE is not set
    # CONFIG_NET_VENDOR_HISILICON is not set
    # CONFIG_NET_VENDOR_HUAWEI is not set
    # CONFIG_NET_VENDOR_INTEL is not set
    # CONFIG_NET_VENDOR_MARVELL is not set
    # CONFIG_NET_VENDOR_MELLANOX is not set
    # CONFIG_NET_VENDOR_MICREL is not set
    # CONFIG_NET_VENDOR_MICROCHIP is not set
    # CONFIG_NET_VENDOR_MICROSEMI is not set
    # CONFIG_NET_VENDOR_NATSEMI is not set
    # CONFIG_NET_VENDOR_NETRONOME is not set
    # CONFIG_NET_VENDOR_NI is not set
    # CONFIG_ETHOC is not set
    # CONFIG_NET_VENDOR_PENSANDO is not set
    # CONFIG_NET_VENDOR_QUALCOMM is not set
    # CONFIG_NET_VENDOR_RENESAS is not set
    # CONFIG_NET_VENDOR_ROCKER is not set
    # CONFIG_NET_VENDOR_SAMSUNG is not set
    # CONFIG_NET_VENDOR_SEEQ is not set
    # CONFIG_NET_VENDOR_SOLARFLARE is not set
    # CONFIG_NET_VENDOR_SMSC is not set
    # CONFIG_NET_VENDOR_SOCIONEXT is not set
    CONFIG_NET_VENDOR_STMICRO=y
    CONFIG_STMMAC_ETH=y
    # CONFIG_STMMAC_SELFTESTS is not set
    # CONFIG_STMMAC_ETHTOOL is not set
    # CONFIG_STMMAC_FULL is not set
    CONFIG_STMMAC_PLATFORM=y
    # CONFIG_DWMAC_DWC_QOS_ETH is not set
    # CONFIG_DWMAC_GENERIC is not set
    CONFIG_DWMAC_ROCKCHIP=y
    # CONFIG_DWMAC_ROCKCHIP_TOOL is not set
    # CONFIG_DWMAC_INTEL_PLAT is not set
    # CONFIG_NET_VENDOR_SYNOPSYS is not set
    # CONFIG_NET_VENDOR_VIA is not set
    # CONFIG_NET_VENDOR_WIZNET is not set
    # CONFIG_NET_VENDOR_XILINX is not set
    CONFIG_PHYLINK=y
    CONFIG_PHYLIB=y
    CONFIG_SWPHY=y
    # CONFIG_LED_TRIGGER_PHY is not set
    CONFIG_FIXED_PHY=y
    # CONFIG_SFP is not set
    
    #
    # MII PHY device drivers
    #
    # CONFIG_AMD_PHY is not set
    # CONFIG_ADIN_PHY is not set
    # CONFIG_AQUANTIA_PHY is not set
    # CONFIG_AX88796B_PHY is not set
    # CONFIG_BROADCOM_PHY is not set
    # CONFIG_BCM54140_PHY is not set
    # CONFIG_BCM7XXX_PHY is not set
    # CONFIG_BCM84881_PHY is not set
    # CONFIG_BCM87XX_PHY is not set
    # CONFIG_CICADA_PHY is not set
    # CONFIG_CORTINA_PHY is not set
    # CONFIG_DAVICOM_PHY is not set
    # CONFIG_ICPLUS_PHY is not set
    # CONFIG_LXT_PHY is not set
    # CONFIG_INTEL_XWAY_PHY is not set
    # CONFIG_LSI_ET1011C_PHY is not set
    # CONFIG_MARVELL_PHY is not set
    # CONFIG_MARVELL_10G_PHY is not set
    # CONFIG_MICREL_PHY is not set
    # CONFIG_MICROCHIP_PHY is not set
    # CONFIG_MICROCHIP_T1_PHY is not set
    # CONFIG_MICROSEMI_PHY is not set
    # CONFIG_MOTORCOMM_PHY is not set
    # CONFIG_NATIONAL_PHY is not set
    # CONFIG_AT803X_PHY is not set
    # CONFIG_QSEMI_PHY is not set
    # CONFIG_REALTEK_PHY is not set
    # CONFIG_RENESAS_PHY is not set
    # CONFIG_ROCKCHIP_PHY is not set
    CONFIG_RK630_PHY=y
    # CONFIG_SMSC_PHY is not set
    # CONFIG_STE10XP is not set
    # CONFIG_TERANETICS_PHY is not set
    # CONFIG_DP83822_PHY is not set
    # CONFIG_DP83TC811_PHY is not set
    # CONFIG_DP83848_PHY is not set
    # CONFIG_DP83867_PHY is not set
    # CONFIG_DP83869_PHY is not set
    # CONFIG_VITESSE_PHY is not set
    # CONFIG_XILINX_GMII2RGMII is not set
    # CONFIG_MICREL_KS8995MA is not set
    CONFIG_MDIO_DEVICE=y
    CONFIG_MDIO_BUS=y
    CONFIG_OF_MDIO=y
    CONFIG_MDIO_DEVRES=y
    # CONFIG_MDIO_BITBANG is not set
    # CONFIG_MDIO_BCM_UNIMAC is not set
    # CONFIG_MDIO_HISI_FEMAC is not set
    # CONFIG_MDIO_MVUSB is not set
    # CONFIG_MDIO_MSCC_MIIM is not set
    # CONFIG_MDIO_IPQ4019 is not set
    # CONFIG_MDIO_IPQ8064 is not set
    
    #
    # MDIO Multiplexers
    #
    # CONFIG_MDIO_BUS_MUX_GPIO is not set
    # CONFIG_MDIO_BUS_MUX_MULTIPLEXER is not set
    # CONFIG_MDIO_BUS_MUX_MMIOREG is not set
    
    #
    # PCS device drivers
    #
    CONFIG_PCS_XPCS=y
    # end of PCS device drivers
    
    # CONFIG_PPP is not set
    # CONFIG_SLIP is not set
    # CONFIG_USB_NET_DRIVERS is not set
    CONFIG_WLAN=y
    # CONFIG_WIRELESS_WDS is not set
    # CONFIG_WLAN_VENDOR_ADMTEK is not set
    # CONFIG_WLAN_VENDOR_ATH is not set
    # CONFIG_WLAN_VENDOR_ATMEL is not set
    # CONFIG_WLAN_VENDOR_BROADCOM is not set
    # CONFIG_WLAN_VENDOR_CISCO is not set
    # CONFIG_WLAN_VENDOR_INTEL is not set
    # CONFIG_WLAN_VENDOR_INTERSIL is not set
    # CONFIG_WLAN_VENDOR_MARVELL is not set
    # CONFIG_WLAN_VENDOR_MEDIATEK is not set
    # CONFIG_WLAN_VENDOR_MICROCHIP is not set
    # CONFIG_WLAN_VENDOR_RALINK is not set
    # CONFIG_WLAN_VENDOR_REALTEK is not set
    # CONFIG_WLAN_VENDOR_RSI is not set
    # CONFIG_WLAN_VENDOR_ST is not set
    # CONFIG_WLAN_VENDOR_TI is not set
    # CONFIG_WLAN_VENDOR_ZYDAS is not set
    # CONFIG_WLAN_VENDOR_QUANTENNA is not set
    CONFIG_WL_ROCKCHIP=m
    CONFIG_WIFI_BUILD_MODULE=y
    # CONFIG_WIFI_LOAD_DRIVER_WHEN_KERNEL_BOOTUP is not set
    # CONFIG_WIFI_GENERATE_RANDOM_MAC_ADDR is not set
    # CONFIG_BCMDHD is not set
    # CONFIG_CYW_BCMDHD is not set
    # CONFIG_INFINEON_DHD is not set
    # CONFIG_MAC80211_HWSIM is not set
    # CONFIG_USB_NET_RNDIS_WLAN is not set
    # CONFIG_VIRT_WIFI is not set
    
    #
    # Enable WiMAX (Networking options) to see the WiMAX drivers
    #
    # CONFIG_WAN is not set
    # CONFIG_NETDEVSIM is not set
    # CONFIG_NET_FAILOVER is not set
    # CONFIG_ISDN is not set
    # CONFIG_NVM is not set
    
    #
    # Input device support
    #
    CONFIG_INPUT=y
    CONFIG_INPUT_LEDS=y
    # CONFIG_INPUT_FF_MEMLESS is not set
    # CONFIG_INPUT_POLLDEV is not set
    # CONFIG_INPUT_SPARSEKMAP is not set
    # CONFIG_INPUT_MATRIXKMAP is not set
    
    #
    # Userland interfaces
    #
    # CONFIG_INPUT_MOUSEDEV is not set
    # CONFIG_INPUT_JOYDEV is not set
    CONFIG_INPUT_EVDEV=y
    # CONFIG_INPUT_EVBUG is not set
    
    #
    # Input Device Drivers
    #
    CONFIG_INPUT_KEYBOARD=y
    CONFIG_KEYBOARD_ADC=y
    # CONFIG_KEYBOARD_ADP5588 is not set
    # CONFIG_KEYBOARD_ADP5589 is not set
    # CONFIG_KEYBOARD_ATKBD is not set
    # CONFIG_KEYBOARD_QT1050 is not set
    # CONFIG_KEYBOARD_QT1070 is not set
    # CONFIG_KEYBOARD_QT2160 is not set
    # CONFIG_KEYBOARD_DLINK_DIR685 is not set
    # CONFIG_KEYBOARD_LKKBD is not set
    # CONFIG_KEYBOARD_GPIO is not set
    # CONFIG_KEYBOARD_GPIO_POLLED is not set
    # CONFIG_KEYBOARD_TCA6416 is not set
    # CONFIG_KEYBOARD_TCA8418 is not set
    # CONFIG_KEYBOARD_MATRIX is not set
    # CONFIG_KEYBOARD_LM8323 is not set
    # CONFIG_KEYBOARD_LM8333 is not set
    # CONFIG_KEYBOARD_MAX7359 is not set
    # CONFIG_KEYBOARD_MCS is not set
    # CONFIG_KEYBOARD_MPR121 is not set
    # CONFIG_KEYBOARD_NEWTON is not set
    # CONFIG_KEYBOARD_OPENCORES is not set
    # CONFIG_KEYBOARD_SAMSUNG is not set
    # CONFIG_KEYBOARD_STOWAWAY is not set
    # CONFIG_KEYBOARD_SUNKBD is not set
    # CONFIG_KEYBOARD_OMAP4 is not set
    # CONFIG_KEYBOARD_TM2_TOUCHKEY is not set
    # CONFIG_KEYBOARD_XTKBD is not set
    # CONFIG_KEYBOARD_CAP11XX is not set
    # CONFIG_KEYBOARD_BCM is not set
    # CONFIG_INPUT_MOUSE is not set
    # CONFIG_INPUT_JOYSTICK is not set
    # CONFIG_INPUT_TABLET is not set
    # CONFIG_INPUT_TOUCHSCREEN is not set
    # CONFIG_ROCKCHIP_REMOTECTL is not set
    
    #
    # handle all sensors
    #
    # CONFIG_SENSOR_DEVICE is not set
    # CONFIG_INPUT_MISC is not set
    # CONFIG_RMI4_CORE is not set
    
    #
    # Hardware I/O ports
    #
    # CONFIG_SERIO is not set
    # CONFIG_GAMEPORT is not set
    # end of Hardware I/O ports
    # end of Input device support
    
    #
    # Character devices
    #
    CONFIG_TTY=y
    # CONFIG_VT is not set
    CONFIG_UNIX98_PTYS=y
    # CONFIG_LEGACY_PTYS is not set
    CONFIG_LDISC_AUTOLOAD=y
    
    #
    # Serial drivers
    #
    CONFIG_SERIAL_8250=y
    # CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set
    CONFIG_SERIAL_8250_16550A_VARIANTS=y
    # CONFIG_SERIAL_8250_FINTEK is not set
    # CONFIG_SERIAL_8250_CONSOLE is not set
    CONFIG_SERIAL_8250_DMA=y
    CONFIG_SERIAL_8250_NR_UARTS=6
    CONFIG_SERIAL_8250_RUNTIME_UARTS=6
    # CONFIG_SERIAL_8250_EXTENDED is not set
    # CONFIG_SERIAL_8250_ASPEED_VUART is not set
    CONFIG_SERIAL_8250_DWLIB=y
    CONFIG_SERIAL_8250_DW=y
    # CONFIG_SERIAL_8250_EM is not set
    # CONFIG_SERIAL_8250_RT288X is not set
    # CONFIG_SERIAL_OF_PLATFORM is not set
    
    #
    # Non-8250 serial port support
    #
    # CONFIG_SERIAL_AMBA_PL010 is not set
    # CONFIG_SERIAL_AMBA_PL011 is not set
    # CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
    # CONFIG_SERIAL_SAMSUNG is not set
    # CONFIG_SERIAL_MAX3100 is not set
    # CONFIG_SERIAL_MAX310X is not set
    # CONFIG_SERIAL_UARTLITE is not set
    CONFIG_SERIAL_CORE=y
    # CONFIG_SERIAL_MSM_GENI_EARLY_CONSOLE is not set
    # CONFIG_SERIAL_SIFIVE is not set
    # CONFIG_SERIAL_SCCNXP is not set
    # CONFIG_SERIAL_SC16IS7XX is not set
    # CONFIG_SERIAL_BCM63XX is not set
    # CONFIG_SERIAL_ALTERA_JTAGUART is not set
    # CONFIG_SERIAL_ALTERA_UART is not set
    # CONFIG_SERIAL_IFX6X60 is not set
    # CONFIG_SERIAL_XILINX_PS_UART is not set
    # CONFIG_SERIAL_ARC is not set
    # CONFIG_SERIAL_FSL_LPUART is not set
    # CONFIG_SERIAL_FSL_LINFLEXUART is not set
    # CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
    # CONFIG_SERIAL_ST_ASC is not set
    # CONFIG_SERIAL_SPRD is not set
    # end of Serial drivers
    
    CONFIG_SERIAL_MCTRL_GPIO=y
    # CONFIG_SERIAL_NONSTANDARD is not set
    # CONFIG_N_GSM is not set
    # CONFIG_NULL_TTY is not set
    # CONFIG_TRACE_SINK is not set
    # CONFIG_HVC_DCC is not set
    # CONFIG_SERIAL_DEV_BUS is not set
    # CONFIG_TTY_PRINTK is not set
    # CONFIG_VIRTIO_CONSOLE is not set
    # CONFIG_IPMI_HANDLER is not set
    CONFIG_HW_RANDOM=y
    # CONFIG_HW_RANDOM_TIMERIOMEM is not set
    # CONFIG_HW_RANDOM_BA431 is not set
    # CONFIG_HW_RANDOM_CCTRNG is not set
    # CONFIG_HW_RANDOM_XIPHERA is not set
    CONFIG_HW_RANDOM_ROCKCHIP=y
    CONFIG_DEVMEM=y
    # CONFIG_DEVKMEM is not set
    # CONFIG_RAW_DRIVER is not set
    # CONFIG_TCG_TPM is not set
    # CONFIG_XILLYBUS is not set
    # end of Character devices
    
    # CONFIG_RANDOM_TRUST_BOOTLOADER is not set
    
    #
    # I2C support
    #
    CONFIG_I2C=y
    CONFIG_I2C_BOARDINFO=y
    CONFIG_I2C_COMPAT=y
    CONFIG_I2C_CHARDEV=y
    CONFIG_I2C_MUX=y
    
    #
    # Multiplexer I2C Chip support
    #
    # CONFIG_I2C_ARB_GPIO_CHALLENGE is not set
    # CONFIG_I2C_MUX_GPIO is not set
    # CONFIG_I2C_MUX_GPMUX is not set
    # CONFIG_I2C_MUX_LTC4306 is not set
    # CONFIG_I2C_MUX_PCA9541 is not set
    # CONFIG_I2C_MUX_PCA954x is not set
    # CONFIG_I2C_MUX_PINCTRL is not set
    # CONFIG_I2C_MUX_REG is not set
    # CONFIG_I2C_DEMUX_PINCTRL is not set
    # CONFIG_I2C_MUX_MLXCPLD is not set
    # end of Multiplexer I2C Chip support
    
    CONFIG_I2C_HELPER_AUTO=y
    CONFIG_I2C_ALGOBIT=y
    
    #
    # I2C Hardware Bus support
    #
    
    #
    # I2C system bus drivers (mostly embedded / system-on-chip)
    #
    # CONFIG_I2C_CBUS_GPIO is not set
    # CONFIG_I2C_DESIGNWARE_PLATFORM is not set
    # CONFIG_I2C_EMEV2 is not set
    CONFIG_I2C_GPIO=y
    # CONFIG_I2C_GPIO_FAULT_INJECTOR is not set
    # CONFIG_I2C_NOMADIK is not set
    # CONFIG_I2C_OCORES is not set
    # CONFIG_I2C_PCA_PLATFORM is not set
    CONFIG_I2C_RK3X=y
    # CONFIG_I2C_SIMTEC is not set
    # CONFIG_I2C_XILINX is not set
    
    #
    # External I2C/SMBus adapter drivers
    #
    # CONFIG_I2C_DIOLAN_U2C is not set
    # CONFIG_I2C_ROBOTFUZZ_OSIF is not set
    # CONFIG_I2C_TAOS_EVM is not set
    # CONFIG_I2C_TINY_USB is not set
    
    #
    # Other I2C/SMBus bus drivers
    #
    # end of I2C Hardware Bus support
    
    # CONFIG_I2C_STUB is not set
    # CONFIG_I2C_SLAVE is not set
    # CONFIG_I2C_DEBUG_CORE is not set
    # CONFIG_I2C_DEBUG_ALGO is not set
    # CONFIG_I2C_DEBUG_BUS is not set
    # end of I2C support
    
    # CONFIG_I3C is not set
    CONFIG_SPI=y
    # CONFIG_SPI_DEBUG is not set
    CONFIG_SPI_MASTER=y
    CONFIG_SPI_MEM=y
    
    #
    # SPI Master Controller Drivers
    #
    # CONFIG_SPI_ALTERA is not set
    # CONFIG_SPI_AXI_SPI_ENGINE is not set
    # CONFIG_SPI_BITBANG is not set
    # CONFIG_SPI_CADENCE is not set
    # CONFIG_SPI_CADENCE_QUADSPI is not set
    # CONFIG_SPI_DESIGNWARE is not set
    # CONFIG_SPI_NXP_FLEXSPI is not set
    # CONFIG_SPI_GPIO is not set
    # CONFIG_SPI_FSL_SPI is not set
    # CONFIG_SPI_OC_TINY is not set
    # CONFIG_SPI_PL022 is not set
    CONFIG_SPI_ROCKCHIP=y
    # CONFIG_SPI_ROCKCHIP_MISCDEV is not set
    CONFIG_SPI_ROCKCHIP_SFC=y
    # CONFIG_SPI_SC18IS602 is not set
    # CONFIG_SPI_SIFIVE is not set
    # CONFIG_SPI_MXIC is not set
    # CONFIG_SPI_XCOMM is not set
    # CONFIG_SPI_XILINX is not set
    # CONFIG_SPI_ZYNQMP_GQSPI is not set
    # CONFIG_SPI_AMD is not set
    
    #
    # SPI Multiplexer support
    #
    # CONFIG_SPI_MUX is not set
    
    #
    # SPI Protocol Masters
    #
    CONFIG_SPI_SPIDEV=y
    # CONFIG_SPI_LOOPBACK_TEST is not set
    # CONFIG_SPI_TLE62X0 is not set
    # CONFIG_SPI_SLAVE is not set
    # CONFIG_SPMI is not set
    # CONFIG_HSI is not set
    # CONFIG_PPS is not set
    
    #
    # PTP clock support
    #
    # CONFIG_PTP_1588_CLOCK is not set
    
    #
    # Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
    #
    # end of PTP clock support
    
    CONFIG_PINCTRL=y
    CONFIG_PINMUX=y
    CONFIG_PINCONF=y
    CONFIG_GENERIC_PINCONF=y
    # CONFIG_DEBUG_PINCTRL is not set
    # CONFIG_PINCTRL_MCP23S08 is not set
    CONFIG_PINCTRL_ROCKCHIP=y
    # CONFIG_PINCTRL_SINGLE is not set
    # CONFIG_PINCTRL_SX150X is not set
    # CONFIG_PINCTRL_STMFX is not set
    # CONFIG_PINCTRL_OCELOT is not set
    
    #
    # Renesas pinctrl drivers
    #
    # end of Renesas pinctrl drivers
    
    CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y
    CONFIG_GPIOLIB=y
    CONFIG_GPIOLIB_FASTPATH_LIMIT=512
    CONFIG_OF_GPIO=y
    CONFIG_GPIOLIB_IRQCHIP=y
    # CONFIG_DEBUG_GPIO is not set
    CONFIG_GPIO_SYSFS=y
    CONFIG_GPIO_CDEV=y
    CONFIG_GPIO_CDEV_V1=y
    
    #
    # Memory mapped GPIO drivers
    #
    # CONFIG_GPIO_74XX_MMIO is not set
    # CONFIG_GPIO_ALTERA is not set
    # CONFIG_GPIO_CADENCE is not set
    # CONFIG_GPIO_DWAPB is not set
    # CONFIG_GPIO_FTGPIO010 is not set
    # CONFIG_GPIO_GENERIC_PLATFORM is not set
    # CONFIG_GPIO_GRGPIO is not set
    # CONFIG_GPIO_HLWD is not set
    # CONFIG_GPIO_LOGICVC is not set
    # CONFIG_GPIO_MB86S7X is not set
    # CONFIG_GPIO_MPC8XXX is not set
    # CONFIG_GPIO_PL061 is not set
    CONFIG_GPIO_ROCKCHIP=y
    # CONFIG_GPIO_SAMA5D2_PIOBU is not set
    # CONFIG_GPIO_SIFIVE is not set
    # CONFIG_GPIO_SYSCON is not set
    # CONFIG_GPIO_XILINX is not set
    # CONFIG_GPIO_ZEVIO is not set
    # CONFIG_GPIO_AMD_FCH is not set
    # end of Memory mapped GPIO drivers
    
    #
    # I2C GPIO expanders
    #
    # CONFIG_GPIO_ADP5588 is not set
    # CONFIG_GPIO_ADNP is not set
    # CONFIG_GPIO_AW9110 is not set
    # CONFIG_GPIO_GW_PLD is not set
    # CONFIG_GPIO_MAX7300 is not set
    # CONFIG_GPIO_MAX732X is not set
    # CONFIG_GPIO_PCA953X is not set
    # CONFIG_GPIO_PCA9570 is not set
    # CONFIG_GPIO_PCF857X is not set
    # CONFIG_GPIO_TPIC2810 is not set
    # end of I2C GPIO expanders
    
    #
    # MFD GPIO expanders
    #
    # CONFIG_HTC_EGPIO is not set
    # end of MFD GPIO expanders
    
    #
    # SPI GPIO expanders
    #
    # CONFIG_GPIO_74X164 is not set
    # CONFIG_GPIO_MAX3191X is not set
    # CONFIG_GPIO_MAX7301 is not set
    # CONFIG_GPIO_MC33880 is not set
    # CONFIG_GPIO_PISOSR is not set
    # CONFIG_GPIO_XRA1403 is not set
    # end of SPI GPIO expanders
    
    #
    # USB GPIO expanders
    #
    # end of USB GPIO expanders
    
    # CONFIG_GPIO_AGGREGATOR is not set
    # CONFIG_GPIO_MOCKUP is not set
    # CONFIG_W1 is not set
    CONFIG_POWER_RESET=y
    # CONFIG_POWER_RESET_BRCMKONA is not set
    # CONFIG_POWER_RESET_BRCMSTB is not set
    # CONFIG_POWER_RESET_GPIO is not set
    # CONFIG_POWER_RESET_GPIO_RESTART is not set
    # CONFIG_POWER_RESET_LTC2952 is not set
    CONFIG_POWER_RESET_RESTART=y
    # CONFIG_POWER_RESET_VERSATILE is not set
    # CONFIG_POWER_RESET_SYSCON is not set
    # CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
    CONFIG_REBOOT_MODE=y
    CONFIG_SYSCON_REBOOT_MODE=y
    # CONFIG_NVMEM_REBOOT_MODE is not set
    CONFIG_POWER_SUPPLY=y
    # CONFIG_POWER_SUPPLY_DEBUG is not set
    # CONFIG_PDA_POWER is not set
    # CONFIG_GENERIC_ADC_BATTERY is not set
    # CONFIG_TEST_POWER is not set
    # CONFIG_CHARGER_ADP5061 is not set
    # CONFIG_BATTERY_CW2015 is not set
    # CONFIG_BATTERY_CW2017 is not set
    # CONFIG_BATTERY_CW221X is not set
    # CONFIG_BATTERY_DS2780 is not set
    # CONFIG_BATTERY_DS2781 is not set
    # CONFIG_BATTERY_DS2782 is not set
    # CONFIG_BATTERY_SBS is not set
    # CONFIG_CHARGER_SBS is not set
    # CONFIG_MANAGER_SBS is not set
    # CONFIG_BATTERY_BQ27XXX is not set
    # CONFIG_BATTERY_MAX17040 is not set
    # CONFIG_BATTERY_MAX17042 is not set
    # CONFIG_CHARGER_MAX8903 is not set
    # CONFIG_CHARGER_LP8727 is not set
    # CONFIG_CHARGER_GPIO is not set
    # CONFIG_CHARGER_MANAGER is not set
    # CONFIG_ROCKCHIP_CHARGER_MANAGER is not set
    # CONFIG_CHARGER_LT3651 is not set
    # CONFIG_CHARGER_SC8551 is not set
    # CONFIG_CHARGER_SC89890 is not set
    # CONFIG_CHARGER_DETECTOR_MAX14656 is not set
    # CONFIG_CHARGER_BQ2415X is not set
    # CONFIG_CHARGER_BQ24190 is not set
    # CONFIG_CHARGER_BQ24257 is not set
    # CONFIG_CHARGER_BQ24735 is not set
    # CONFIG_CHARGER_BQ2515X is not set
    # CONFIG_CHARGER_BQ25700 is not set
    # CONFIG_CHARGER_BQ25890 is not set
    # CONFIG_CHARGER_BQ25980 is not set
    # CONFIG_CHARGER_SMB347 is not set
    # CONFIG_BATTERY_GAUGE_LTC2941 is not set
    # CONFIG_BATTERY_RT5033 is not set
    # CONFIG_CHARGER_RT9455 is not set
    # CONFIG_CHARGER_UCS1002 is not set
    # CONFIG_CHARGER_BD99954 is not set
    # CONFIG_CHARGER_SGM41542 is not set
    # CONFIG_HWMON is not set
    CONFIG_THERMAL=y
    # CONFIG_THERMAL_NETLINK is not set
    # CONFIG_THERMAL_STATISTICS is not set
    CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0
    CONFIG_THERMAL_OF=y
    CONFIG_THERMAL_WRITABLE_TRIPS=y
    CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
    # CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
    # CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
    # CONFIG_THERMAL_GOV_FAIR_SHARE is not set
    CONFIG_THERMAL_GOV_STEP_WISE=y
    # CONFIG_THERMAL_GOV_BANG_BANG is not set
    CONFIG_THERMAL_GOV_USER_SPACE=y
    CONFIG_CPU_THERMAL=y
    CONFIG_CPU_FREQ_THERMAL=y
    CONFIG_DEVFREQ_THERMAL=y
    # CONFIG_THERMAL_EMULATION is not set
    # CONFIG_THERMAL_MMIO is not set
    CONFIG_ROCKCHIP_THERMAL=y
    # CONFIG_GENERIC_ADC_THERMAL is not set
    CONFIG_WATCHDOG=y
    CONFIG_WATCHDOG_CORE=y
    # CONFIG_WATCHDOG_NOWAYOUT is not set
    CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
    CONFIG_WATCHDOG_OPEN_TIMEOUT=0
    # CONFIG_WATCHDOG_SYSFS is not set
    
    #
    # Watchdog Pretimeout Governors
    #
    # CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set
    
    #
    # Watchdog Device Drivers
    #
    # CONFIG_SOFT_WATCHDOG is not set
    # CONFIG_GPIO_WATCHDOG is not set
    # CONFIG_XILINX_WATCHDOG is not set
    # CONFIG_ZIIRAVE_WATCHDOG is not set
    # CONFIG_ARM_SP805_WATCHDOG is not set
    # CONFIG_CADENCE_WATCHDOG is not set
    # CONFIG_FTWDT010_WATCHDOG is not set
    CONFIG_DW_WATCHDOG=y
    # CONFIG_MAX63XX_WATCHDOG is not set
    # CONFIG_ARM_SMC_WATCHDOG is not set
    # CONFIG_MEN_A21_WDT is not set
    
    #
    # USB-based Watchdog Cards
    #
    # CONFIG_USBPCWATCHDOG is not set
    CONFIG_SSB_POSSIBLE=y
    # CONFIG_SSB is not set
    CONFIG_BCMA_POSSIBLE=y
    # CONFIG_BCMA is not set
    
    #
    # Multifunction device drivers
    #
    # CONFIG_MFD_ACT8945A is not set
    # CONFIG_MFD_AS3711 is not set
    # CONFIG_MFD_AS3722 is not set
    # CONFIG_PMIC_ADP5520 is not set
    # CONFIG_MFD_AAT2870_CORE is not set
    # CONFIG_MFD_ATMEL_FLEXCOM is not set
    # CONFIG_MFD_ATMEL_HLCDC is not set
    # CONFIG_MFD_BCM590XX is not set
    # CONFIG_MFD_BD9571MWV is not set
    # CONFIG_MFD_AXP20X_I2C is not set
    # CONFIG_MFD_MADERA is not set
    # CONFIG_MFD_ASIC3 is not set
    # CONFIG_PMIC_DA903X is not set
    # CONFIG_MFD_DA9052_SPI is not set
    # CONFIG_MFD_DA9052_I2C is not set
    # CONFIG_MFD_DA9055 is not set
    # CONFIG_MFD_DA9062 is not set
    # CONFIG_MFD_DA9063 is not set
    # CONFIG_MFD_DA9150 is not set
    # CONFIG_MFD_DLN2 is not set
    # CONFIG_MFD_GATEWORKS_GSC is not set
    # CONFIG_MFD_MC13XXX_SPI is not set
    # CONFIG_MFD_MC13XXX_I2C is not set
    # CONFIG_MFD_MP2629 is not set
    # CONFIG_MFD_HI6421_PMIC is not set
    # CONFIG_HTC_PASIC3 is not set
    # CONFIG_HTC_I2CPLD is not set
    # CONFIG_MFD_IQS62X is not set
    # CONFIG_MFD_KEMPLD is not set
    # CONFIG_MFD_88PM800 is not set
    # CONFIG_MFD_88PM805 is not set
    # CONFIG_MFD_88PM860X is not set
    # CONFIG_MFD_MAX14577 is not set
    # CONFIG_MFD_MAX77620 is not set
    # CONFIG_MFD_MAX77650 is not set
    # CONFIG_MFD_MAX77686 is not set
    # CONFIG_MFD_MAX77693 is not set
    # CONFIG_MFD_MAX77843 is not set
    # CONFIG_MFD_MAX8907 is not set
    # CONFIG_MFD_MAX8925 is not set
    # CONFIG_MFD_MAX8997 is not set
    # CONFIG_MFD_MAX8998 is not set
    # CONFIG_MFD_MAX96745 is not set
    # CONFIG_MFD_MAX96755F is not set
    # CONFIG_MFD_MT6360 is not set
    # CONFIG_MFD_MT6397 is not set
    # CONFIG_MFD_MENF21BMC is not set
    # CONFIG_EZX_PCAP is not set
    # CONFIG_MFD_CPCAP is not set
    # CONFIG_MFD_VIPERBOARD is not set
    # CONFIG_MFD_RETU is not set
    # CONFIG_MFD_PCF50633 is not set
    # CONFIG_MFD_PM8XXX is not set
    # CONFIG_MFD_RT5033 is not set
    # CONFIG_MFD_RC5T583 is not set
    # CONFIG_MFD_RK618 is not set
    # CONFIG_MFD_RK628 is not set
    # CONFIG_MFD_RK630 is not set
    # CONFIG_MFD_RK630_I2C is not set
    # CONFIG_MFD_RK630_SPI is not set
    # CONFIG_MFD_RK806 is not set
    # CONFIG_MFD_RK806_SPI is not set
    # CONFIG_MFD_RK808 is not set
    # CONFIG_MFD_RK1000 is not set
    # CONFIG_MFD_RN5T618 is not set
    # CONFIG_MFD_SEC_CORE is not set
    # CONFIG_MFD_SI476X_CORE is not set
    # CONFIG_MFD_SM501 is not set
    # CONFIG_MFD_SKY81452 is not set
    # CONFIG_ABX500_CORE is not set
    # CONFIG_MFD_STMPE is not set
    CONFIG_MFD_SYSCON=y
    # CONFIG_MFD_TI_AM335X_TSCADC is not set
    # CONFIG_MFD_LP3943 is not set
    # CONFIG_MFD_LP8788 is not set
    # CONFIG_MFD_TI_LMU is not set
    # CONFIG_MFD_PALMAS is not set
    # CONFIG_TPS6105X is not set
    # CONFIG_TPS65010 is not set
    # CONFIG_TPS6507X is not set
    # CONFIG_MFD_TPS65086 is not set
    # CONFIG_MFD_TPS65090 is not set
    # CONFIG_MFD_TPS65217 is not set
    # CONFIG_MFD_TI_LP873X is not set
    # CONFIG_MFD_TI_LP87565 is not set
    # CONFIG_MFD_TPS65218 is not set
    # CONFIG_MFD_TPS6586X is not set
    # CONFIG_MFD_TPS65910 is not set
    # CONFIG_MFD_TPS65912_I2C is not set
    # CONFIG_MFD_TPS65912_SPI is not set
    # CONFIG_MFD_TPS80031 is not set
    # CONFIG_TWL4030_CORE is not set
    # CONFIG_TWL6040_CORE is not set
    # CONFIG_MFD_WL1273_CORE is not set
    # CONFIG_MFD_LM3533 is not set
    # CONFIG_MFD_TC3589X is not set
    # CONFIG_MFD_T7L66XB is not set
    # CONFIG_MFD_TC6387XB is not set
    # CONFIG_MFD_TC6393XB is not set
    # CONFIG_MFD_TQMX86 is not set
    # CONFIG_MFD_LOCHNAGAR is not set
    # CONFIG_MFD_ARIZONA_I2C is not set
    # CONFIG_MFD_ARIZONA_SPI is not set
    # CONFIG_MFD_WM8400 is not set
    # CONFIG_MFD_WM831X_I2C is not set
    # CONFIG_MFD_WM831X_SPI is not set
    # CONFIG_MFD_WM8350_I2C is not set
    # CONFIG_MFD_WM8994 is not set
    # CONFIG_MFD_ROHM_BD718XX is not set
    # CONFIG_MFD_ROHM_BD70528 is not set
    # CONFIG_MFD_ROHM_BD71828 is not set
    # CONFIG_MFD_STPMIC1 is not set
    # CONFIG_MFD_STMFX is not set
    # CONFIG_MFD_KHADAS_MCU is not set
    # CONFIG_MFD_INTEL_M10_BMC is not set
    # end of Multifunction device drivers
    
    CONFIG_REGULATOR=y
    # CONFIG_REGULATOR_DEBUG is not set
    CONFIG_REGULATOR_FIXED_VOLTAGE=y
    # CONFIG_REGULATOR_VIRTUAL_CONSUMER is not set
    # CONFIG_REGULATOR_USERSPACE_CONSUMER is not set
    # CONFIG_REGULATOR_88PG86X is not set
    # CONFIG_REGULATOR_ACT8865 is not set
    # CONFIG_REGULATOR_AD5398 is not set
    # CONFIG_REGULATOR_DA9210 is not set
    # CONFIG_REGULATOR_DA9211 is not set
    # CONFIG_REGULATOR_FAN53555 is not set
    # CONFIG_REGULATOR_FAN53880 is not set
    CONFIG_REGULATOR_GPIO=y
    # CONFIG_REGULATOR_ISL9305 is not set
    # CONFIG_REGULATOR_ISL6271A is not set
    # CONFIG_REGULATOR_LP3971 is not set
    # CONFIG_REGULATOR_LP3972 is not set
    # CONFIG_REGULATOR_LP872X is not set
    # CONFIG_REGULATOR_LP8752 is not set
    # CONFIG_REGULATOR_LP8755 is not set
    # CONFIG_REGULATOR_LTC3589 is not set
    # CONFIG_REGULATOR_LTC3676 is not set
    # CONFIG_REGULATOR_MAX1586 is not set
    # CONFIG_REGULATOR_MAX8649 is not set
    # CONFIG_REGULATOR_MAX8660 is not set
    # CONFIG_REGULATOR_MAX8952 is not set
    # CONFIG_REGULATOR_MAX8973 is not set
    # CONFIG_REGULATOR_MAX77826 is not set
    # CONFIG_REGULATOR_MCP16502 is not set
    # CONFIG_REGULATOR_MP5416 is not set
    # CONFIG_REGULATOR_MP8859 is not set
    # CONFIG_REGULATOR_MP8865 is not set
    # CONFIG_REGULATOR_MP886X is not set
    # CONFIG_REGULATOR_MPQ7920 is not set
    # CONFIG_REGULATOR_MT6311 is not set
    # CONFIG_REGULATOR_PCA9450 is not set
    # CONFIG_REGULATOR_PFUZE100 is not set
    # CONFIG_REGULATOR_PV88060 is not set
    # CONFIG_REGULATOR_PV88080 is not set
    # CONFIG_REGULATOR_PV88090 is not set
    CONFIG_REGULATOR_PWM=y
    # CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY is not set
    # CONFIG_REGULATOR_RK860X is not set
    # CONFIG_REGULATOR_RT4801 is not set
    # CONFIG_REGULATOR_RTMV20 is not set
    # CONFIG_REGULATOR_SLG51000 is not set
    # CONFIG_REGULATOR_SY8106A is not set
    # CONFIG_REGULATOR_SY8824X is not set
    # CONFIG_REGULATOR_SY8827N is not set
    # CONFIG_REGULATOR_TPS51632 is not set
    # CONFIG_REGULATOR_TPS62360 is not set
    # CONFIG_REGULATOR_TPS65023 is not set
    # CONFIG_REGULATOR_TPS6507X is not set
    # CONFIG_REGULATOR_TPS65132 is not set
    # CONFIG_REGULATOR_TPS6524X is not set
    # CONFIG_REGULATOR_VCTRL is not set
    # CONFIG_REGULATOR_WL2868C is not set
    # CONFIG_REGULATOR_XZ3216 is not set
    # CONFIG_RC_CORE is not set
    # CONFIG_MEDIA_CEC_SUPPORT is not set
    CONFIG_MEDIA_SUPPORT=y
    # CONFIG_MEDIA_SUPPORT_FILTER is not set
    # CONFIG_MEDIA_SUBDRV_AUTOSELECT is not set
    
    #
    # Media device types
    #
    CONFIG_MEDIA_CAMERA_SUPPORT=y
    # CONFIG_MEDIA_ANALOG_TV_SUPPORT is not set
    # CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set
    # CONFIG_MEDIA_RADIO_SUPPORT is not set
    # CONFIG_MEDIA_SDR_SUPPORT is not set
    CONFIG_MEDIA_PLATFORM_SUPPORT=y
    # CONFIG_MEDIA_TEST_SUPPORT is not set
    # end of Media device types
    
    #
    # Media core support
    #
    CONFIG_VIDEO_DEV=y
    CONFIG_MEDIA_CONTROLLER=y
    # end of Media core support
    
    #
    # Video4Linux options
    #
    CONFIG_VIDEO_V4L2=y
    CONFIG_VIDEO_V4L2_I2C=y
    CONFIG_VIDEO_V4L2_SUBDEV_API=y
    # CONFIG_VIDEO_ADV_DEBUG is not set
    # CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
    CONFIG_V4L2_FWNODE=y
    # end of Video4Linux options
    
    #
    # Media controller options
    #
    # end of Media controller options
    
    #
    # Media drivers
    #
    # CONFIG_MEDIA_USB_SUPPORT is not set
    CONFIG_VIDEOBUF2_CORE=y
    CONFIG_VIDEOBUF2_V4L2=y
    CONFIG_VIDEOBUF2_MEMOPS=y
    CONFIG_VIDEOBUF2_CMA_SG=y
    # CONFIG_VIDEOBUF2_DMA_CONTIG is not set
    CONFIG_VIDEOBUF2_VMALLOC=y
    # CONFIG_VIDEOBUF2_DMA_SG is not set
    CONFIG_V4L_PLATFORM_DRIVERS=y
    # CONFIG_VIDEO_CADENCE is not set
    # CONFIG_VIDEO_ASPEED is not set
    # CONFIG_VIDEO_MUX is not set
    CONFIG_VIDEO_ROCKCHIP_CIF=m
    CONFIG_ROCKCHIP_CIF_WORKMODE_PINGPONG=y
    # CONFIG_ROCKCHIP_CIF_WORKMODE_ONEFRAME is not set
    CONFIG_ROCKCHIP_CIF_USE_DUMMY_BUF=y
    # CONFIG_ROCKCHIP_CIF_USE_NONE_DUMMY_BUF is not set
    # CONFIG_ROCKCHIP_CIF_USE_MONITOR is not set
    CONFIG_VIDEO_ROCKCHIP_ISP=m
    # CONFIG_VIDEO_ROCKCHIP_ISP_VERSION_V1X is not set
    # CONFIG_VIDEO_ROCKCHIP_ISP_VERSION_V20 is not set
    # CONFIG_VIDEO_ROCKCHIP_ISP_VERSION_V21 is not set
    # CONFIG_VIDEO_ROCKCHIP_ISP_VERSION_V30 is not set
    CONFIG_VIDEO_ROCKCHIP_ISP_VERSION_V32=y
    # CONFIG_VIDEO_ROCKCHIP_ISPP is not set
    # CONFIG_VIDEO_XILINX is not set
    # CONFIG_V4L_MEM2MEM_DRIVERS is not set
    # end of Media drivers
    
    #
    # Media ancillary drivers
    #
    
    #
    # Audio decoders, processors and mixers
    #
    # CONFIG_VIDEO_TVAUDIO is not set
    # CONFIG_VIDEO_TDA7432 is not set
    # CONFIG_VIDEO_TDA9840 is not set
    # CONFIG_VIDEO_TDA1997X is not set
    # CONFIG_VIDEO_TEA6415C is not set
    # CONFIG_VIDEO_TEA6420 is not set
    # CONFIG_VIDEO_MSP3400 is not set
    # CONFIG_VIDEO_CS3308 is not set
    # CONFIG_VIDEO_CS5345 is not set
    # CONFIG_VIDEO_CS53L32A is not set
    # CONFIG_VIDEO_TLV320AIC23B is not set
    # CONFIG_VIDEO_UDA1342 is not set
    # CONFIG_VIDEO_WM8775 is not set
    # CONFIG_VIDEO_WM8739 is not set
    # CONFIG_VIDEO_VP27SMPX is not set
    # CONFIG_VIDEO_SONY_BTF_MPX is not set
    # end of Audio decoders, processors and mixers
    
    #
    # RDS decoders
    #
    # CONFIG_VIDEO_SAA6588 is not set
    # end of RDS decoders
    
    #
    # Video decoders
    #
    # CONFIG_VIDEO_ADV7180 is not set
    # CONFIG_VIDEO_ADV7183 is not set
    # CONFIG_VIDEO_ADV748X is not set
    # CONFIG_VIDEO_ADV7604 is not set
    # CONFIG_VIDEO_ADV7842 is not set
    # CONFIG_VIDEO_BT819 is not set
    # CONFIG_VIDEO_BT856 is not set
    # CONFIG_VIDEO_BT866 is not set
    # CONFIG_VIDEO_EP9461E is not set
    # CONFIG_VIDEO_KS0127 is not set
    # CONFIG_VIDEO_IT6616 is not set
    # CONFIG_VIDEO_LT6911UXC is not set
    # CONFIG_VIDEO_LT6911UXE is not set
    # CONFIG_VIDEO_LT7911D is not set
    # CONFIG_VIDEO_LT7911UXC is not set
    # CONFIG_VIDEO_LT8619C is not set
    # CONFIG_VIDEO_ML86V7667 is not set
    # CONFIG_VIDEO_NVP6158 is not set
    # CONFIG_VIDEO_NVP6188 is not set
    # CONFIG_VIDEO_NVP6324 is not set
    # CONFIG_VIDEO_OTP_EEPROM is not set
    # CONFIG_VIDEO_RK628_CSI is not set
    # CONFIG_VIDEO_RK628_BT1120 is not set
    # CONFIG_VIDEO_SAA7110 is not set
    # CONFIG_VIDEO_SAA711X is not set
    # CONFIG_VIDEO_TC358743 is not set
    # CONFIG_VIDEO_TC35874X is not set
    # CONFIG_VIDEO_THCV244 is not set
    # CONFIG_VIDEO_TVP514X is not set
    # CONFIG_VIDEO_TVP5150 is not set
    # CONFIG_VIDEO_TVP7002 is not set
    # CONFIG_VIDEO_TW2804 is not set
    # CONFIG_VIDEO_TW9903 is not set
    # CONFIG_VIDEO_TW9906 is not set
    # CONFIG_VIDEO_TW9910 is not set
    # CONFIG_VIDEO_VPX3220 is not set
    # CONFIG_VIDEO_MAX9286 is not set
    # CONFIG_VIDEO_MAX96714 is not set
    # CONFIG_VIDEO_MAX96722 is not set
    
    #
    # Video and audio decoders
    #
    # CONFIG_VIDEO_SAA717X is not set
    # CONFIG_VIDEO_CX25840 is not set
    # CONFIG_VIDEO_IT66353 is not set
    # end of Video decoders
    
    #
    # Video encoders
    #
    # CONFIG_VIDEO_SAA7127 is not set
    # CONFIG_VIDEO_SAA7185 is not set
    # CONFIG_VIDEO_ADV7170 is not set
    # CONFIG_VIDEO_ADV7175 is not set
    # CONFIG_VIDEO_ADV7343 is not set
    # CONFIG_VIDEO_ADV7393 is not set
    # CONFIG_VIDEO_ADV7511 is not set
    # CONFIG_VIDEO_AD9389B is not set
    # CONFIG_VIDEO_AK881X is not set
    # CONFIG_VIDEO_THS8200 is not set
    # end of Video encoders
    
    #
    # Video improvement chips
    #
    # CONFIG_VIDEO_UPD64031A is not set
    # CONFIG_VIDEO_UPD64083 is not set
    # end of Video improvement chips
    
    #
    # Audio/Video compression chips
    #
    # CONFIG_VIDEO_SAA6752HS is not set
    # end of Audio/Video compression chips
    
    #
    # SDR tuner chips
    #
    # end of SDR tuner chips
    
    #
    # Miscellaneous helper chips
    #
    # CONFIG_VIDEO_THS7303 is not set
    # CONFIG_VIDEO_M52790 is not set
    # CONFIG_VIDEO_I2C is not set
    # CONFIG_VIDEO_ST_MIPID02 is not set
    CONFIG_VIDEO_RK_IRCUT=y
    # end of Miscellaneous helper chips
    
    #
    # Camera sensor devices
    #
    # CONFIG_VIDEO_AR0230 is not set
    # CONFIG_VIDEO_GC02M2 is not set
    # CONFIG_VIDEO_GC08A3 is not set
    # CONFIG_VIDEO_GC1084 is not set
    # CONFIG_VIDEO_GC2053 is not set
    # CONFIG_VIDEO_GC2093 is not set
    # CONFIG_VIDEO_GC2145 is not set
    # CONFIG_VIDEO_GC2385 is not set
    # CONFIG_VIDEO_GC3003 is not set
    # CONFIG_VIDEO_GC4023 is not set
    # CONFIG_VIDEO_GC4653 is not set
    # CONFIG_VIDEO_GC4663 is not set
    # CONFIG_VIDEO_GC4C33 is not set
    # CONFIG_VIDEO_GC5025 is not set
    # CONFIG_VIDEO_GC5035 is not set
    # CONFIG_VIDEO_GC8034 is not set
    # CONFIG_VIDEO_HI556 is not set
    # CONFIG_VIDEO_IMX214 is not set
    # CONFIG_VIDEO_IMX219 is not set
    # CONFIG_VIDEO_IMX258 is not set
    # CONFIG_VIDEO_IMX274 is not set
    # CONFIG_VIDEO_IMX290 is not set
    # CONFIG_VIDEO_IMX307 is not set
    # CONFIG_VIDEO_IMX317 is not set
    # CONFIG_VIDEO_IMX319 is not set
    # CONFIG_VIDEO_IMX323 is not set
    # CONFIG_VIDEO_IMX327 is not set
    # CONFIG_VIDEO_IMX334 is not set
    # CONFIG_VIDEO_IMX335 is not set
    # CONFIG_VIDEO_IMX347 is not set
    # CONFIG_VIDEO_IMX378 is not set
    # CONFIG_VIDEO_IMX415 is not set
    # CONFIG_VIDEO_IMX464 is not set
    # CONFIG_VIDEO_IMX355 is not set
    # CONFIG_VIDEO_IMX577 is not set
    # CONFIG_VIDEO_IMX586 is not set
    # CONFIG_VIDEO_JX_K17 is not set
    # CONFIG_VIDEO_OS02G10 is not set
    # CONFIG_VIDEO_OS03B10 is not set
    CONFIG_VIDEO_OS04A10=m
    # CONFIG_VIDEO_OS05A20 is not set
    # CONFIG_VIDEO_OS08A20 is not set
    # CONFIG_VIDEO_OV02B10 is not set
    # CONFIG_VIDEO_OV02K10 is not set
    # CONFIG_VIDEO_OV16A10 is not set
    # CONFIG_VIDEO_OV2640 is not set
    # CONFIG_VIDEO_OV2659 is not set
    # CONFIG_VIDEO_OV2680 is not set
    # CONFIG_VIDEO_OV2685 is not set
    # CONFIG_VIDEO_OV2718 is not set
    # CONFIG_VIDEO_OV4686 is not set
    # CONFIG_VIDEO_OV4688 is not set
    # CONFIG_VIDEO_OV4689 is not set
    # CONFIG_VIDEO_OV50C40 is not set
    # CONFIG_VIDEO_OV5640 is not set
    # CONFIG_VIDEO_OV5645 is not set
    # CONFIG_VIDEO_OV5647 is not set
    # CONFIG_VIDEO_OV6650 is not set
    # CONFIG_VIDEO_OV5670 is not set
    # CONFIG_VIDEO_OV5675 is not set
    # CONFIG_VIDEO_OV5695 is not set
    # CONFIG_VIDEO_OV7251 is not set
    # CONFIG_VIDEO_OV772X is not set
    # CONFIG_VIDEO_OV7640 is not set
    # CONFIG_VIDEO_OV7670 is not set
    # CONFIG_VIDEO_OV7740 is not set
    # CONFIG_VIDEO_OV8856 is not set
    # CONFIG_VIDEO_OV8858 is not set
    # CONFIG_VIDEO_OV9281 is not set
    # CONFIG_VIDEO_OV9640 is not set
    # CONFIG_VIDEO_OV9650 is not set
    # CONFIG_VIDEO_OV12D2Q is not set
    # CONFIG_VIDEO_OV13850 is not set
    # CONFIG_VIDEO_OV13855 is not set
    # CONFIG_VIDEO_OV13858 is not set
    # CONFIG_VIDEO_VS6624 is not set
    # CONFIG_VIDEO_MT9M001 is not set
    # CONFIG_VIDEO_MT9M032 is not set
    # CONFIG_VIDEO_MT9M111 is not set
    # CONFIG_VIDEO_MT9P031 is not set
    # CONFIG_VIDEO_MT9T001 is not set
    # CONFIG_VIDEO_MT9T112 is not set
    # CONFIG_VIDEO_MT9V011 is not set
    # CONFIG_VIDEO_MT9V032 is not set
    # CONFIG_VIDEO_MT9V111 is not set
    # CONFIG_VIDEO_SC031GS is not set
    # CONFIG_VIDEO_SC035GS is not set
    # CONFIG_VIDEO_SC132GS is not set
    # CONFIG_VIDEO_SC200AI is not set
    # CONFIG_VIDEO_SC210IOT is not set
    # CONFIG_VIDEO_SC2232 is not set
    # CONFIG_VIDEO_SC2239 is not set
    # CONFIG_VIDEO_SC230AI is not set
    # CONFIG_VIDEO_SC2310 is not set
    # CONFIG_VIDEO_SC2336 is not set
    # CONFIG_VIDEO_SC301IOT is not set
    CONFIG_VIDEO_SC3336=m
    # CONFIG_VIDEO_SC3338 is not set
    # CONFIG_VIDEO_SC401AI is not set
    # CONFIG_VIDEO_SC4210 is not set
    # CONFIG_VIDEO_SC4238 is not set
    # CONFIG_VIDEO_SC430CS is not set
    CONFIG_VIDEO_SC4336=m
    # CONFIG_VIDEO_SC500AI is not set
    # CONFIG_VIDEO_SC501AI is not set
    CONFIG_VIDEO_SC530AI=m
    # CONFIG_VIDEO_SENSOR_ADAPTER is not set
    # CONFIG_VIDEO_SR030PC30 is not set
    # CONFIG_VIDEO_NOON010PC30 is not set
    # CONFIG_VIDEO_M5MOLS is not set
    # CONFIG_VIDEO_RDACM20 is not set
    # CONFIG_VIDEO_RJ54N1 is not set
    # CONFIG_VIDEO_S5K3L6XX is not set
    # CONFIG_VIDEO_S5K6AA is not set
    # CONFIG_VIDEO_S5K6A3 is not set
    # CONFIG_VIDEO_S5K4ECGX is not set
    # CONFIG_VIDEO_S5K5BAF is not set
    # CONFIG_VIDEO_S5KJN1 is not set
    # CONFIG_VIDEO_SMIAPP is not set
    # CONFIG_VIDEO_ET8EK8 is not set
    # CONFIG_VIDEO_S5C73M3 is not set
    # CONFIG_VIDEO_PREISP_DUMMY_SENSOR is not set
    # end of Camera sensor devices
    
    #
    # Lens drivers
    #
    # CONFIG_VIDEO_AD5820 is not set
    # CONFIG_VIDEO_AK7375 is not set
    # CONFIG_VIDEO_AW8601 is not set
    # CONFIG_VIDEO_CN3927V is not set
    # CONFIG_VIDEO_DW9714 is not set
    # CONFIG_VIDEO_DW9768 is not set
    # CONFIG_VIDEO_DW9800W is not set
    # CONFIG_VIDEO_DW9807_VCM is not set
    # CONFIG_VIDEO_FP5510 is not set
    # end of Lens drivers
    
    #
    # Flash devices
    #
    # CONFIG_VIDEO_ADP1653 is not set
    # CONFIG_VIDEO_AW36518 is not set
    # CONFIG_VIDEO_LM3560 is not set
    # CONFIG_VIDEO_LM3646 is not set
    # CONFIG_VIDEO_SGM3784 is not set
    # end of Flash devices
    
    #
    # SPI helper chips
    #
    # CONFIG_VIDEO_GS1662 is not set
    # CONFIG_VIDEO_ROCKCHIP_PREISP is not set
    # end of SPI helper chips
    
    #
    # Media SPI Adapters
    #
    # end of Media SPI Adapters
    # end of Media ancillary drivers
    
    #
    # Graphics support
    #
    # CONFIG_IMX_IPUV3_CORE is not set
    CONFIG_DRM=y
    CONFIG_DRM_EDID=y
    # CONFIG_DRM_IGNORE_IOTCL_PERMIT is not set
    # CONFIG_DRM_DP is not set
    # CONFIG_DRM_DP_AUX_CHARDEV is not set
    # CONFIG_DRM_DEBUG_MM is not set
    # CONFIG_DRM_DEBUG_SELFTEST is not set
    CONFIG_DRM_KMS_HELPER=y
    CONFIG_DRM_KMS_FB_HELPER=y
    # CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set
    CONFIG_DRM_FBDEV_EMULATION=y
    CONFIG_DRM_FBDEV_OVERALLOC=100
    # CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set
    # CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
    # CONFIG_DRM_DP_CEC is not set
    CONFIG_DRM_GEM_CMA_HELPER=y
    
    #
    # I2C encoder or helper chips
    #
    # CONFIG_DRM_I2C_CH7006 is not set
    # CONFIG_DRM_I2C_SIL164 is not set
    # CONFIG_DRM_I2C_NXP_TDA998X is not set
    # CONFIG_DRM_I2C_NXP_TDA9950 is not set
    # end of I2C encoder or helper chips
    
    #
    # ARM devices
    #
    # CONFIG_DRM_HDLCD is not set
    # CONFIG_DRM_MALI_DISPLAY is not set
    # CONFIG_DRM_KOMEDA is not set
    # end of ARM devices
    
    # CONFIG_DRM_VGEM is not set
    # CONFIG_DRM_VKMS is not set
    # CONFIG_DRM_EXYNOS is not set
    CONFIG_DRM_ROCKCHIP=y
    # CONFIG_ROCKCHIP_DRM_CUBIC_LUT is not set
    # CONFIG_ROCKCHIP_DRM_DEBUG is not set
    # CONFIG_ROCKCHIP_DRM_DIRECT_SHOW is not set
    CONFIG_ROCKCHIP_VOP=y
    # CONFIG_ROCKCHIP_VOP2 is not set
    # CONFIG_ROCKCHIP_ANALOGIX_DP is not set
    # CONFIG_ROCKCHIP_CDN_DP is not set
    # CONFIG_ROCKCHIP_DRM_TVE is not set
    # CONFIG_ROCKCHIP_DW_HDMI is not set
    # CONFIG_ROCKCHIP_DW_MIPI_DSI is not set
    # CONFIG_ROCKCHIP_DW_DP is not set
    # CONFIG_ROCKCHIP_INNO_HDMI is not set
    # CONFIG_ROCKCHIP_LVDS is not set
    CONFIG_ROCKCHIP_RGB=y
    # CONFIG_ROCKCHIP_RK3066_HDMI is not set
    # CONFIG_ROCKCHIP_VCONN is not set
    # CONFIG_DRM_ROCKCHIP_VVOP is not set
    # CONFIG_ROCKCHIP_DW_HDCP2 is not set
    # CONFIG_DRM_UDL is not set
    # CONFIG_DRM_ARMADA is not set
    # CONFIG_DRM_RCAR_DW_HDMI is not set
    # CONFIG_DRM_RCAR_LVDS is not set
    # CONFIG_DRM_OMAP is not set
    # CONFIG_DRM_TILCDC is not set
    # CONFIG_DRM_FSL_DCU is not set
    # CONFIG_DRM_STM is not set
    CONFIG_DRM_PANEL=y
    
    #
    # Display Panels
    #
    # CONFIG_DRM_PANEL_ARM_VERSATILE is not set
    # CONFIG_DRM_PANEL_LVDS is not set
    CONFIG_DRM_PANEL_SIMPLE=y
    # CONFIG_DRM_PANEL_ILITEK_IL9322 is not set
    # CONFIG_DRM_PANEL_SAMSUNG_LD9040 is not set
    # CONFIG_DRM_PANEL_LG_LB035Q02 is not set
    # CONFIG_DRM_PANEL_LG_LG4573 is not set
    # CONFIG_DRM_PANEL_NEC_NL8048HL11 is not set
    # CONFIG_DRM_PANEL_NOVATEK_NT39016 is not set
    # CONFIG_DRM_PANEL_MAXIM_DESERIALIZER is not set
    # CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO is not set
    # CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 is not set
    # CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set
    # CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
    # CONFIG_DRM_PANEL_SEIKO_43WVF1G is not set
    # CONFIG_DRM_PANEL_SHARP_LS037V7DW01 is not set
    # CONFIG_DRM_PANEL_SITRONIX_ST7789V is not set
    # CONFIG_DRM_PANEL_SONY_ACX565AKM is not set
    # CONFIG_DRM_PANEL_TPO_TD028TTEC1 is not set
    # CONFIG_DRM_PANEL_TPO_TD043MTEA1 is not set
    # CONFIG_DRM_PANEL_TPO_TPG110 is not set
    # end of Display Panels
    
    CONFIG_DRM_BRIDGE=y
    CONFIG_DRM_PANEL_BRIDGE=y
    
    #
    # Display Interface Bridges
    #
    # CONFIG_DRM_CDNS_DSI is not set
    # CONFIG_DRM_CHRONTEL_CH7033 is not set
    # CONFIG_DRM_DISPLAY_CONNECTOR is not set
    # CONFIG_DRM_ITE_IT6161 is not set
    # CONFIG_DRM_LONTIUM_LT9611 is not set
    # CONFIG_DRM_LVDS_CODEC is not set
    # CONFIG_DRM_MAXIM_MAX96745 is not set
    # CONFIG_DRM_MAXIM_MAX96755F is not set
    # CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
    # CONFIG_DRM_NWL_MIPI_DSI is not set
    # CONFIG_DRM_NXP_PTN3460 is not set
    # CONFIG_DRM_PARADE_PS8622 is not set
    # CONFIG_DRM_PARADE_PS8640 is not set
    # CONFIG_DRM_RK1000_TVE is not set
    # CONFIG_DRM_ROHM_BU18XL82 is not set
    # CONFIG_DRM_SIL_SII8620 is not set
    CONFIG_DRM_SII902X=y
    # CONFIG_DRM_SII9234 is not set
    # CONFIG_DRM_SIMPLE_BRIDGE is not set
    # CONFIG_DRM_THINE_THC63LVD1024 is not set
    # CONFIG_DRM_TOSHIBA_TC358762 is not set
    # CONFIG_DRM_TOSHIBA_TC358764 is not set
    # CONFIG_DRM_TOSHIBA_TC358767 is not set
    # CONFIG_DRM_TOSHIBA_TC358768 is not set
    # CONFIG_DRM_TOSHIBA_TC358775 is not set
    # CONFIG_DRM_TI_TFP410 is not set
    # CONFIG_DRM_TI_SN65DSI86 is not set
    # CONFIG_DRM_TI_TPD12S015 is not set
    # CONFIG_DRM_ANALOGIX_ANX6345 is not set
    # CONFIG_DRM_ANALOGIX_ANX78XX is not set
    # CONFIG_DRM_I2C_ADV7511 is not set
    # CONFIG_DRM_CDNS_MHDP8546 is not set
    # end of Display Interface Bridges
    
    # CONFIG_DRM_STI is not set
    # CONFIG_DRM_ETNAVIV is not set
    # CONFIG_DRM_ARCPGU is not set
    # CONFIG_DRM_MXSFB is not set
    # CONFIG_DRM_GM12U320 is not set
    # CONFIG_TINYDRM_HX8357D is not set
    # CONFIG_TINYDRM_ILI9225 is not set
    # CONFIG_TINYDRM_ILI9341 is not set
    # CONFIG_TINYDRM_ILI9486 is not set
    # CONFIG_TINYDRM_MI0283QT is not set
    # CONFIG_TINYDRM_REPAPER is not set
    # CONFIG_TINYDRM_ST7586 is not set
    # CONFIG_TINYDRM_ST7735R is not set
    # CONFIG_DRM_PL111 is not set
    # CONFIG_DRM_TVE200 is not set
    # CONFIG_DRM_LIMA is not set
    # CONFIG_DRM_PANFROST is not set
    # CONFIG_DRM_MCDE is not set
    # CONFIG_DRM_TIDSS is not set
    # CONFIG_DRM_LEGACY is not set
    CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y
    # CONFIG_MALI400 is not set
    # CONFIG_MALI_MIDGARD is not set
    # CONFIG_MALI_KUTF is not set
    # CONFIG_MALI_BIFROST is not set
    
    #
    # Frame buffer Devices
    #
    CONFIG_FB_CMDLINE=y
    CONFIG_FB_NOTIFY=y
    CONFIG_FB=y
    # CONFIG_FIRMWARE_EDID is not set
    CONFIG_FB_CFB_FILLRECT=y
    CONFIG_FB_CFB_COPYAREA=y
    CONFIG_FB_CFB_IMAGEBLIT=y
    CONFIG_FB_SYS_FILLRECT=y
    CONFIG_FB_SYS_COPYAREA=y
    CONFIG_FB_SYS_IMAGEBLIT=y
    # CONFIG_FB_FOREIGN_ENDIAN is not set
    CONFIG_FB_SYS_FOPS=y
    CONFIG_FB_DEFERRED_IO=y
    # CONFIG_FB_MODE_HELPERS is not set
    # CONFIG_FB_TILEBLITTING is not set
    
    #
    # Frame buffer hardware drivers
    #
    # CONFIG_FB_ARMCLCD is not set
    # CONFIG_FB_OPENCORES is not set
    # CONFIG_FB_S1D13XXX is not set
    # CONFIG_FB_SMSCUFX is not set
    # CONFIG_FB_UDL is not set
    # CONFIG_FB_IBM_GXT4500 is not set
    # CONFIG_FB_VIRTUAL is not set
    # CONFIG_FB_METRONOME is not set
    # CONFIG_FB_SIMPLE is not set
    # CONFIG_FB_SSD1307 is not set
    # end of Frame buffer Devices
    
    #
    # Backlight & LCD device support
    #
    # CONFIG_LCD_CLASS_DEVICE is not set
    CONFIG_BACKLIGHT_CLASS_DEVICE=y
    # CONFIG_BACKLIGHT_KTD253 is not set
    CONFIG_BACKLIGHT_PWM=y
    # CONFIG_BACKLIGHT_QCOM_WLED is not set
    # CONFIG_BACKLIGHT_ADP8860 is not set
    # CONFIG_BACKLIGHT_ADP8870 is not set
    # CONFIG_BACKLIGHT_LM3630A is not set
    # CONFIG_BACKLIGHT_LM3639 is not set
    # CONFIG_BACKLIGHT_LP855X is not set
    # CONFIG_BACKLIGHT_GPIO is not set
    # CONFIG_BACKLIGHT_LV5207LP is not set
    # CONFIG_BACKLIGHT_BD6107 is not set
    # CONFIG_BACKLIGHT_ARCXCNN is not set
    # CONFIG_BACKLIGHT_LED is not set
    # end of Backlight & LCD device support
    
    #
    # Rockchip Misc Video driver
    #
    
    #
    # RGA
    #
    # CONFIG_ROCKCHIP_RGA is not set
    # end of RGA
    
    # CONFIG_ROCKCHIP_RGA2 is not set
    CONFIG_ROCKCHIP_MULTI_RGA=m
    CONFIG_ROCKCHIP_RGA_ASYNC=y
    CONFIG_ROCKCHIP_RGA_PROC_FS=y
    # CONFIG_ROCKCHIP_RGA_DEBUG_FS is not set
    CONFIG_ROCKCHIP_RGA_DEBUGGER=y
    CONFIG_ROCKCHIP_RVE=m
    CONFIG_ROCKCHIP_RVE_PROC_FS=y
    # CONFIG_ROCKCHIP_RVE_DEBUG_FS is not set
    CONFIG_ROCKCHIP_RVE_DEBUGGER=y
    
    #
    # IEP
    #
    # CONFIG_IEP is not set
    # end of IEP
    
    # CONFIG_ROCKCHIP_MPP_SERVICE is not set
    CONFIG_ROCKCHIP_DVBM=m
    CONFIG_ROCKCHIP_DVBM_PROC_FS=y
    # end of Rockchip Misc Video driver
    
    CONFIG_VIDEOMODE_HELPERS=y
    CONFIG_HDMI=y
    # CONFIG_LOGO is not set
    # end of Graphics support
    
    CONFIG_SOUND=y
    CONFIG_SND=y
    CONFIG_SND_PCM=y
    CONFIG_SND_DMAENGINE_PCM=y
    CONFIG_SND_JACK=y
    CONFIG_SND_JACK_INPUT_DEV=y
    # CONFIG_SND_OSSEMUL is not set
    # CONFIG_SND_PCM_TIMER is not set
    # CONFIG_SND_HRTIMER is not set
    # CONFIG_SND_DYNAMIC_MINORS is not set
    # CONFIG_SND_SUPPORT_OLD_API is not set
    # CONFIG_SND_PROC_FS is not set
    # CONFIG_SND_VERBOSE_PRINTK is not set
    # CONFIG_SND_DEBUG is not set
    # CONFIG_SND_SEQUENCER is not set
    # CONFIG_SND_DRIVERS is not set
    
    #
    # HD-Audio
    #
    # end of HD-Audio
    
    CONFIG_SND_HDA_PREALLOC_SIZE=64
    # CONFIG_SND_ARM is not set
    # CONFIG_SND_SPI is not set
    CONFIG_SND_USB=y
    # CONFIG_SND_USB_AUDIO is not set
    # CONFIG_SND_USB_UA101 is not set
    # CONFIG_SND_USB_CAIAQ is not set
    # CONFIG_SND_USB_6FIRE is not set
    # CONFIG_SND_USB_HIFACE is not set
    # CONFIG_SND_BCD2000 is not set
    # CONFIG_SND_USB_POD is not set
    # CONFIG_SND_USB_PODHD is not set
    # CONFIG_SND_USB_TONEPORT is not set
    # CONFIG_SND_USB_VARIAX is not set
    CONFIG_SND_SOC=y
    CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
    # CONFIG_SND_SOC_AMD_ACP is not set
    # CONFIG_SND_ATMEL_SOC is not set
    # CONFIG_SND_BCM63XX_I2S_WHISTLER is not set
    # CONFIG_SND_DESIGNWARE_I2S is not set
    
    #
    # SoC Audio for Freescale CPUs
    #
    
    #
    # Common SoC Audio options for Freescale CPUs:
    #
    # CONFIG_SND_SOC_FSL_ASRC is not set
    # CONFIG_SND_SOC_FSL_SAI is not set
    # CONFIG_SND_SOC_FSL_AUDMIX is not set
    # CONFIG_SND_SOC_FSL_SSI is not set
    # CONFIG_SND_SOC_FSL_SPDIF is not set
    # CONFIG_SND_SOC_FSL_ESAI is not set
    # CONFIG_SND_SOC_FSL_MICFIL is not set
    # CONFIG_SND_SOC_IMX_AUDMUX is not set
    # end of SoC Audio for Freescale CPUs
    
    # CONFIG_SND_I2S_HI6210_I2S is not set
    # CONFIG_SND_I2S_HI3660_I2S is not set
    # CONFIG_SND_SOC_IMG is not set
    # CONFIG_SND_SOC_MTK_BTCVSD is not set
    CONFIG_SND_SOC_ROCKCHIP=y
    # CONFIG_SND_SOC_ROCKCHIP_DLP is not set
    # CONFIG_SND_SOC_ROCKCHIP_I2S is not set
    CONFIG_SND_SOC_ROCKCHIP_I2S_TDM=y
    # CONFIG_SND_SOC_ROCKCHIP_MULTI_DAIS is not set
    # CONFIG_SND_SOC_ROCKCHIP_PDM is not set
    # CONFIG_SND_SOC_ROCKCHIP_SAI is not set
    # CONFIG_SND_SOC_ROCKCHIP_SPDIF is not set
    # CONFIG_SND_SOC_ROCKCHIP_SPDIFRX is not set
    # CONFIG_SND_SOC_ROCKCHIP_VAD is not set
    # CONFIG_SND_SOC_ROCKCHIP_MAX98090 is not set
    # CONFIG_SND_SOC_ROCKCHIP_MULTICODECS is not set
    # CONFIG_SND_SOC_ROCKCHIP_RT5645 is not set
    # CONFIG_SND_SOC_ROCKCHIP_HDMI is not set
    # CONFIG_SND_SOC_RK3288_HDMI_ANALOG is not set
    # CONFIG_SND_SOC_RK3399_GRU_SOUND is not set
    # CONFIG_SND_SOC_SOF_TOPLEVEL is not set
    
    #
    # STMicroelectronics STM32 SOC audio support
    #
    # end of STMicroelectronics STM32 SOC audio support
    
    # CONFIG_SND_SOC_XILINX_I2S is not set
    # CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER is not set
    # CONFIG_SND_SOC_XILINX_SPDIF is not set
    # CONFIG_SND_SOC_XTFPGA_I2S is not set
    # CONFIG_ZX_TDM is not set
    CONFIG_SND_SOC_I2C_AND_SPI=y
    
    #
    # CODEC drivers
    #
    # CONFIG_SND_SOC_AC97_CODEC is not set
    # CONFIG_SND_SOC_ADAU1701 is not set
    # CONFIG_SND_SOC_ADAU1761_I2C is not set
    # CONFIG_SND_SOC_ADAU1761_SPI is not set
    # CONFIG_SND_SOC_ADAU7002 is not set
    # CONFIG_SND_SOC_ADAU7118_HW is not set
    # CONFIG_SND_SOC_ADAU7118_I2C is not set
    # CONFIG_SND_SOC_AK4104 is not set
    # CONFIG_SND_SOC_AK4118 is not set
    # CONFIG_SND_SOC_AK4458 is not set
    # CONFIG_SND_SOC_AK4554 is not set
    # CONFIG_SND_SOC_AK4613 is not set
    # CONFIG_SND_SOC_AK4642 is not set
    # CONFIG_SND_SOC_AK5386 is not set
    # CONFIG_SND_SOC_AK5558 is not set
    # CONFIG_SND_SOC_ALC5623 is not set
    # CONFIG_SND_SOC_BD28623 is not set
    # CONFIG_SND_SOC_BT_SCO is not set
    # CONFIG_SND_SOC_CS35L32 is not set
    # CONFIG_SND_SOC_CS35L33 is not set
    # CONFIG_SND_SOC_CS35L34 is not set
    # CONFIG_SND_SOC_CS35L35 is not set
    # CONFIG_SND_SOC_CS35L36 is not set
    # CONFIG_SND_SOC_CS42L42 is not set
    # CONFIG_SND_SOC_CS42L51_I2C is not set
    # CONFIG_SND_SOC_CS42L52 is not set
    # CONFIG_SND_SOC_CS42L56 is not set
    # CONFIG_SND_SOC_CS42L73 is not set
    # CONFIG_SND_SOC_CS4234 is not set
    # CONFIG_SND_SOC_CS4265 is not set
    # CONFIG_SND_SOC_CS4270 is not set
    # CONFIG_SND_SOC_CS4271_I2C is not set
    # CONFIG_SND_SOC_CS4271_SPI is not set
    # CONFIG_SND_SOC_CS42XX8_I2C is not set
    # CONFIG_SND_SOC_CS43130 is not set
    # CONFIG_SND_SOC_CS4341 is not set
    # CONFIG_SND_SOC_CS4349 is not set
    # CONFIG_SND_SOC_CS53L30 is not set
    # CONFIG_SND_SOC_CX2072X is not set
    # CONFIG_SND_SOC_DA7213 is not set
    # CONFIG_SND_SOC_DMIC is not set
    # CONFIG_SND_SOC_DUMMY_CODEC is not set
    # CONFIG_SND_SOC_ES7134 is not set
    # CONFIG_SND_SOC_ES7202 is not set
    # CONFIG_SND_SOC_ES7210 is not set
    # CONFIG_SND_SOC_ES7241 is not set
    # CONFIG_SND_SOC_ES7243E is not set
    # CONFIG_SND_SOC_ES8311 is not set
    # CONFIG_SND_SOC_ES8316 is not set
    # CONFIG_SND_SOC_ES8323 is not set
    # CONFIG_SND_SOC_ES8326 is not set
    # CONFIG_SND_SOC_ES8328_I2C is not set
    # CONFIG_SND_SOC_ES8328_SPI is not set
    # CONFIG_SND_SOC_ES8396 is not set
    # CONFIG_SND_SOC_GTM601 is not set
    # CONFIG_SND_SOC_INNO_RK3036 is not set
    # CONFIG_SND_SOC_MAX98088 is not set
    # CONFIG_SND_SOC_MAX98357A is not set
    # CONFIG_SND_SOC_MAX98504 is not set
    # CONFIG_SND_SOC_MAX9867 is not set
    # CONFIG_SND_SOC_MAX98927 is not set
    # CONFIG_SND_SOC_MAX98373_I2C is not set
    # CONFIG_SND_SOC_MAX98390 is not set
    # CONFIG_SND_SOC_MAX9860 is not set
    # CONFIG_SND_SOC_MSM8916_WCD_DIGITAL is not set
    # CONFIG_SND_SOC_PCM1681 is not set
    # CONFIG_SND_SOC_PCM1789_I2C is not set
    # CONFIG_SND_SOC_PCM179X_I2C is not set
    # CONFIG_SND_SOC_PCM179X_SPI is not set
    # CONFIG_SND_SOC_PCM186X_I2C is not set
    # CONFIG_SND_SOC_PCM186X_SPI is not set
    # CONFIG_SND_SOC_PCM3060_I2C is not set
    # CONFIG_SND_SOC_PCM3060_SPI is not set
    # CONFIG_SND_SOC_PCM3168A_I2C is not set
    # CONFIG_SND_SOC_PCM3168A_SPI is not set
    # CONFIG_SND_SOC_PCM512x_I2C is not set
    # CONFIG_SND_SOC_PCM512x_SPI is not set
    # CONFIG_SND_SOC_RK312X is not set
    # CONFIG_SND_SOC_RK3228 is not set
    # CONFIG_SND_SOC_RK3308 is not set
    # CONFIG_SND_SOC_RK3328 is not set
    # CONFIG_SND_SOC_RK3528 is not set
    # CONFIG_SND_SOC_RK730 is not set
    # CONFIG_SND_SOC_RK_CODEC_DIGITAL is not set
    # CONFIG_SND_SOC_RT5616 is not set
    # CONFIG_SND_SOC_RT5631 is not set
    # CONFIG_SND_SOC_RT5640 is not set
    # CONFIG_SND_SOC_RT5651 is not set
    CONFIG_SND_SOC_RV1106=y
    # CONFIG_SND_SOC_SGTL5000 is not set
    # CONFIG_SND_SOC_SIMPLE_AMPLIFIER is not set
    # CONFIG_SND_SOC_SIRF_AUDIO_CODEC is not set
    # CONFIG_SND_SOC_SPDIF is not set
    # CONFIG_SND_SOC_SSM2305 is not set
    # CONFIG_SND_SOC_SSM2602_SPI is not set
    # CONFIG_SND_SOC_SSM2602_I2C is not set
    # CONFIG_SND_SOC_SSM4567 is not set
    # CONFIG_SND_SOC_STA32X is not set
    # CONFIG_SND_SOC_STA350 is not set
    # CONFIG_SND_SOC_STI_SAS is not set
    # CONFIG_SND_SOC_TAS2552 is not set
    # CONFIG_SND_SOC_TAS2562 is not set
    # CONFIG_SND_SOC_TAS2764 is not set
    # CONFIG_SND_SOC_TAS2770 is not set
    # CONFIG_SND_SOC_TAS5086 is not set
    # CONFIG_SND_SOC_TAS571X is not set
    # CONFIG_SND_SOC_TAS5720 is not set
    # CONFIG_SND_SOC_TAS6424 is not set
    # CONFIG_SND_SOC_TDA7419 is not set
    # CONFIG_SND_SOC_TFA9879 is not set
    # CONFIG_SND_SOC_TLV320AIC23_I2C is not set
    # CONFIG_SND_SOC_TLV320AIC23_SPI is not set
    # CONFIG_SND_SOC_TLV320AIC31XX is not set
    # CONFIG_SND_SOC_TLV320AIC32X4_I2C is not set
    # CONFIG_SND_SOC_TLV320AIC32X4_SPI is not set
    # CONFIG_SND_SOC_TLV320AIC3X is not set
    # CONFIG_SND_SOC_TLV320ADCX140 is not set
    # CONFIG_SND_SOC_TS3A227E is not set
    # CONFIG_SND_SOC_TSCS42XX is not set
    # CONFIG_SND_SOC_TSCS454 is not set
    # CONFIG_SND_SOC_UDA1334 is not set
    # CONFIG_SND_SOC_WM8510 is not set
    # CONFIG_SND_SOC_WM8523 is not set
    # CONFIG_SND_SOC_WM8524 is not set
    # CONFIG_SND_SOC_WM8580 is not set
    # CONFIG_SND_SOC_WM8711 is not set
    # CONFIG_SND_SOC_WM8728 is not set
    # CONFIG_SND_SOC_WM8731 is not set
    # CONFIG_SND_SOC_WM8737 is not set
    # CONFIG_SND_SOC_WM8741 is not set
    # CONFIG_SND_SOC_WM8750 is not set
    # CONFIG_SND_SOC_WM8753 is not set
    # CONFIG_SND_SOC_WM8770 is not set
    # CONFIG_SND_SOC_WM8776 is not set
    # CONFIG_SND_SOC_WM8782 is not set
    # CONFIG_SND_SOC_WM8804_I2C is not set
    # CONFIG_SND_SOC_WM8804_SPI is not set
    # CONFIG_SND_SOC_WM8903 is not set
    # CONFIG_SND_SOC_WM8904 is not set
    # CONFIG_SND_SOC_WM8960 is not set
    # CONFIG_SND_SOC_WM8962 is not set
    # CONFIG_SND_SOC_WM8974 is not set
    # CONFIG_SND_SOC_WM8978 is not set
    # CONFIG_SND_SOC_WM8985 is not set
    # CONFIG_SND_SOC_ZL38060 is not set
    # CONFIG_SND_SOC_ZX_AUD96P22 is not set
    # CONFIG_SND_SOC_MAX9759 is not set
    # CONFIG_SND_SOC_MT6351 is not set
    # CONFIG_SND_SOC_MT6358 is not set
    # CONFIG_SND_SOC_MT6660 is not set
    # CONFIG_SND_SOC_NAU8540 is not set
    # CONFIG_SND_SOC_NAU8810 is not set
    # CONFIG_SND_SOC_NAU8822 is not set
    # CONFIG_SND_SOC_NAU8824 is not set
    # CONFIG_SND_SOC_TPA6130A2 is not set
    # CONFIG_SND_SOC_AW87XXX is not set
    # CONFIG_SND_SOC_AW883XX is not set
    # end of CODEC drivers
    
    CONFIG_SND_SIMPLE_CARD_UTILS=y
    CONFIG_SND_SIMPLE_CARD=y
    # CONFIG_SND_AUDIO_GRAPH_CARD is not set
    
    #
    # HID support
    #
    # CONFIG_HID is not set
    
    #
    # USB HID support
    #
    # CONFIG_USB_HID is not set
    # CONFIG_HID_PID is not set
    
    #
    # USB HID Boot Protocol drivers
    #
    # CONFIG_USB_KBD is not set
    # CONFIG_USB_MOUSE is not set
    # end of USB HID Boot Protocol drivers
    # end of USB HID support
    
    #
    # I2C HID support
    #
    # CONFIG_I2C_HID is not set
    # end of I2C HID support
    # end of HID support
    
    CONFIG_USB_OHCI_LITTLE_ENDIAN=y
    CONFIG_USB_SUPPORT=y
    CONFIG_USB_COMMON=y
    # CONFIG_USB_LED_TRIG is not set
    # CONFIG_USB_ULPI_BUS is not set
    # CONFIG_USB_CONN_GPIO is not set
    CONFIG_USB_ARCH_HAS_HCD=y
    CONFIG_USB=y
    # CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set
    
    #
    # Miscellaneous USB options
    #
    CONFIG_USB_DEFAULT_PERSIST=y
    # CONFIG_USB_FEW_INIT_RETRIES is not set
    # CONFIG_USB_DYNAMIC_MINORS is not set
    # CONFIG_USB_OTG is not set
    # CONFIG_USB_OTG_PRODUCTLIST is not set
    # CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set
    # CONFIG_USB_LEDS_TRIGGER_USBPORT is not set
    CONFIG_USB_AUTOSUSPEND_DELAY=2
    # CONFIG_USB_MON is not set
    
    #
    # USB Host Controller Drivers
    #
    # CONFIG_USB_C67X00_HCD is not set
    CONFIG_USB_XHCI_HCD=y
    # CONFIG_USB_XHCI_DBGCAP is not set
    # CONFIG_USB_XHCI_PCI_RENESAS is not set
    CONFIG_USB_XHCI_PLATFORM=y
    # CONFIG_USB_EHCI_HCD is not set
    # CONFIG_USB_OXU210HP_HCD is not set
    # CONFIG_USB_ISP116X_HCD is not set
    # CONFIG_USB_FOTG210_HCD is not set
    # CONFIG_USB_MAX3421_HCD is not set
    # CONFIG_USB_OHCI_HCD is not set
    # CONFIG_USB_SL811_HCD is not set
    # CONFIG_USB_R8A66597_HCD is not set
    # CONFIG_USB_HCD_TEST_MODE is not set
    
    #
    # USB Device Class drivers
    #
    # CONFIG_USB_ACM is not set
    # CONFIG_USB_PRINTER is not set
    # CONFIG_USB_WDM is not set
    # CONFIG_USB_TMC is not set
    
    #
    # NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
    #
    
    #
    # also be needed; see USB_STORAGE Help for more info
    #
    
    #
    # USB Imaging devices
    #
    # CONFIG_USB_MDC800 is not set
    # CONFIG_USBIP_CORE is not set
    # CONFIG_USB_CDNS3 is not set
    # CONFIG_USB_MUSB_HDRC is not set
    CONFIG_USB_DWC3=y
    # CONFIG_USB_DWC3_HOST is not set
    # CONFIG_USB_DWC3_GADGET is not set
    CONFIG_USB_DWC3_DUAL_ROLE=y
    
    #
    # Platform Glue Driver Support
    #
    CONFIG_USB_DWC3_OF_SIMPLE=y
    # CONFIG_USB_DWC2 is not set
    # CONFIG_USB_CHIPIDEA is not set
    # CONFIG_USB_ISP1760 is not set
    
    #
    # USB port drivers
    #
    # CONFIG_USB_SERIAL is not set
    
    #
    # USB Miscellaneous drivers
    #
    # CONFIG_USB_EMI62 is not set
    # CONFIG_USB_EMI26 is not set
    # CONFIG_USB_ADUTUX is not set
    # CONFIG_USB_SEVSEG is not set
    # CONFIG_USB_LEGOTOWER is not set
    # CONFIG_USB_LCD is not set
    # CONFIG_USB_CYPRESS_CY7C63 is not set
    # CONFIG_USB_CYTHERM is not set
    # CONFIG_USB_IDMOUSE is not set
    # CONFIG_USB_FTDI_ELAN is not set
    # CONFIG_USB_APPLEDISPLAY is not set
    # CONFIG_APPLE_MFI_FASTCHARGE is not set
    # CONFIG_USB_LD is not set
    # CONFIG_USB_TRANCEVIBRATOR is not set
    # CONFIG_USB_IOWARRIOR is not set
    # CONFIG_USB_TEST is not set
    # CONFIG_USB_EHSET_TEST_FIXTURE is not set
    # CONFIG_USB_ISIGHTFW is not set
    # CONFIG_USB_YUREX is not set
    # CONFIG_USB_EZUSB_FX2 is not set
    # CONFIG_USB_HUB_USB251XB is not set
    # CONFIG_USB_HSIC_USB3503 is not set
    # CONFIG_USB_HSIC_USB4604 is not set
    # CONFIG_USB_LINK_LAYER_TEST is not set
    # CONFIG_USB_CHAOSKEY is not set
    
    #
    # USB Physical Layer drivers
    #
    # CONFIG_NOP_USB_XCEIV is not set
    # CONFIG_USB_GPIO_VBUS is not set
    # CONFIG_USB_ISP1301 is not set
    # CONFIG_USB_ULPI is not set
    # end of USB Physical Layer drivers
    
    CONFIG_USB_GADGET=y
    # CONFIG_USB_GADGET_DEBUG is not set
    # CONFIG_USB_GADGET_DEBUG_FILES is not set
    # CONFIG_USB_GADGET_DEBUG_FS is not set
    CONFIG_USB_GADGET_VBUS_DRAW=2
    CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2
    
    #
    # USB Peripheral Controller
    #
    # CONFIG_USB_FUSB300 is not set
    # CONFIG_USB_FOTG210_UDC is not set
    # CONFIG_USB_GR_UDC is not set
    # CONFIG_USB_R8A66597 is not set
    # CONFIG_USB_PXA27X is not set
    # CONFIG_USB_MV_UDC is not set
    # CONFIG_USB_MV_U3D is not set
    # CONFIG_USB_SNP_UDC_PLAT is not set
    # CONFIG_USB_M66592 is not set
    # CONFIG_USB_BDC_UDC is not set
    # CONFIG_USB_NET2272 is not set
    # CONFIG_USB_GADGET_XILINX is not set
    # CONFIG_USB_MAX3420_UDC is not set
    # CONFIG_USB_DUMMY_HCD is not set
    # end of USB Peripheral Controller
    
    CONFIG_USB_LIBCOMPOSITE=y
    CONFIG_USB_U_ETHER=y
    CONFIG_USB_U_AUDIO=y
    CONFIG_USB_F_RNDIS=y
    CONFIG_USB_F_FS=y
    CONFIG_USB_F_UAC1=y
    CONFIG_USB_F_UAC2=y
    CONFIG_USB_F_UVC=y
    CONFIG_USB_F_HID=y
    CONFIG_USB_CONFIGFS=y
    CONFIG_USB_CONFIGFS_UEVENT=y
    # CONFIG_USB_CONFIGFS_SERIAL is not set
    # CONFIG_USB_CONFIGFS_ACM is not set
    # CONFIG_USB_CONFIGFS_OBEX is not set
    # CONFIG_USB_CONFIGFS_NCM is not set
    # CONFIG_USB_CONFIGFS_ECM is not set
    # CONFIG_USB_CONFIGFS_ECM_SUBSET is not set
    CONFIG_USB_CONFIGFS_RNDIS=y
    # CONFIG_USB_CONFIGFS_EEM is not set
    # CONFIG_USB_CONFIGFS_MASS_STORAGE is not set
    # CONFIG_USB_CONFIGFS_F_LB_SS is not set
    CONFIG_USB_CONFIGFS_F_FS=y
    # CONFIG_USB_CONFIGFS_F_AUDIO_SRC is not set
    CONFIG_USB_CONFIGFS_F_UAC1=y
    # CONFIG_USB_CONFIGFS_F_UAC1_LEGACY is not set
    CONFIG_USB_CONFIGFS_F_UAC2=y
    # CONFIG_USB_CONFIGFS_F_MIDI is not set
    CONFIG_USB_CONFIGFS_F_HID=y
    CONFIG_USB_CONFIGFS_F_UVC=y
    # CONFIG_USB_CONFIGFS_F_PRINTER is not set
    
    #
    # USB Gadget precomposed configurations
    #
    # CONFIG_USB_ZERO is not set
    # CONFIG_USB_AUDIO is not set
    # CONFIG_USB_ETH is not set
    # CONFIG_USB_G_NCM is not set
    # CONFIG_USB_GADGETFS is not set
    # CONFIG_USB_FUNCTIONFS is not set
    # CONFIG_USB_MASS_STORAGE is not set
    # CONFIG_USB_G_SERIAL is not set
    # CONFIG_USB_MIDI_GADGET is not set
    # CONFIG_USB_G_PRINTER is not set
    # CONFIG_USB_CDC_COMPOSITE is not set
    # CONFIG_USB_G_ACM_MS is not set
    # CONFIG_USB_G_MULTI is not set
    # CONFIG_USB_G_HID is not set
    # CONFIG_USB_G_DBGP is not set
    # CONFIG_USB_G_WEBCAM is not set
    # CONFIG_USB_RAW_GADGET is not set
    # end of USB Gadget precomposed configurations
    
    # CONFIG_TYPEC is not set
    CONFIG_USB_ROLE_SWITCH=y
    CONFIG_MMC=y
    # CONFIG_PWRSEQ_EMMC is not set
    CONFIG_PWRSEQ_SIMPLE=y
    CONFIG_MMC_BLOCK=y
    CONFIG_MMC_BLOCK_MINORS=32
    # CONFIG_SDIO_UART is not set
    # CONFIG_MMC_TEST is not set
    CONFIG_MMC_QUEUE_DEPTH=1
    
    #
    # MMC/SD/SDIO Host Controller Drivers
    #
    # CONFIG_MMC_DEBUG is not set
    # CONFIG_MMC_ARMMMCI is not set
    # CONFIG_MMC_SDHCI is not set
    # CONFIG_MMC_SPI is not set
    CONFIG_MMC_DW=y
    CONFIG_MMC_DW_PLTFM=y
    # CONFIG_MMC_DW_BLUEFIELD is not set
    # CONFIG_MMC_DW_EXYNOS is not set
    # CONFIG_MMC_DW_HI3798CV200 is not set
    # CONFIG_MMC_DW_K3 is not set
    CONFIG_MMC_DW_ROCKCHIP=y
    # CONFIG_MMC_VUB300 is not set
    # CONFIG_MMC_USHC is not set
    # CONFIG_MMC_USDHI6ROL0 is not set
    # CONFIG_MMC_CQHCI is not set
    # CONFIG_MMC_HSQ is not set
    # CONFIG_MMC_MTK is not set
    # CONFIG_MEMSTICK is not set
    CONFIG_NEW_LEDS=y
    CONFIG_LEDS_CLASS=y
    # CONFIG_LEDS_CLASS_FLASH is not set
    # CONFIG_LEDS_CLASS_MULTICOLOR is not set
    # CONFIG_LEDS_BRIGHTNESS_HW_CHANGED is not set
    
    #
    # LED drivers
    #
    # CONFIG_LEDS_AN30259A is not set
    # CONFIG_LEDS_AW2013 is not set
    # CONFIG_LEDS_BCM6328 is not set
    # CONFIG_LEDS_BCM6358 is not set
    # CONFIG_LEDS_CR0014114 is not set
    # CONFIG_LEDS_EL15203000 is not set
    # CONFIG_LEDS_LM3530 is not set
    # CONFIG_LEDS_LM3532 is not set
    # CONFIG_LEDS_LM3642 is not set
    # CONFIG_LEDS_LM3692X is not set
    # CONFIG_LEDS_PCA9532 is not set
    CONFIG_LEDS_GPIO=y
    # CONFIG_LEDS_LP3944 is not set
    # CONFIG_LEDS_LP3952 is not set
    # CONFIG_LEDS_LP50XX is not set
    # CONFIG_LEDS_LP55XX_COMMON is not set
    # CONFIG_LEDS_LP8860 is not set
    # CONFIG_LEDS_PCA955X is not set
    # CONFIG_LEDS_PCA963X is not set
    # CONFIG_LEDS_DAC124S085 is not set
    # CONFIG_LEDS_PWM is not set
    # CONFIG_LEDS_REGULATOR is not set
    # CONFIG_LEDS_BD2802 is not set
    # CONFIG_LEDS_LT3593 is not set
    # CONFIG_LEDS_TCA6507 is not set
    # CONFIG_LEDS_TLC591XX is not set
    # CONFIG_LEDS_LM355x is not set
    # CONFIG_LEDS_IS31FL319X is not set
    # CONFIG_LEDS_IS31FL32XX is not set
    
    #
    # LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)
    #
    # CONFIG_LEDS_BLINKM is not set
    # CONFIG_LEDS_SYSCON is not set
    # CONFIG_LEDS_MLXREG is not set
    # CONFIG_LEDS_USER is not set
    # CONFIG_LEDS_SPI_BYTE is not set
    # CONFIG_LEDS_TI_LMU_COMMON is not set
    
    #
    # LED Triggers
    #
    CONFIG_LEDS_TRIGGERS=y
    # CONFIG_LEDS_TRIGGER_TIMER is not set
    # CONFIG_LEDS_TRIGGER_ONESHOT is not set
    # CONFIG_LEDS_TRIGGER_MTD is not set
    # CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
    # CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
    # CONFIG_LEDS_TRIGGER_CPU is not set
    CONFIG_LEDS_TRIGGER_ACTIVITY=y
    # CONFIG_LEDS_TRIGGER_GPIO is not set
    # CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set
    
    #
    # iptables trigger is under Netfilter config (LED target)
    #
    # CONFIG_LEDS_TRIGGER_TRANSIENT is not set
    # CONFIG_LEDS_TRIGGER_CAMERA is not set
    # CONFIG_LEDS_TRIGGER_PANIC is not set
    # CONFIG_LEDS_TRIGGER_NETDEV is not set
    # CONFIG_LEDS_TRIGGER_PATTERN is not set
    # CONFIG_LEDS_TRIGGER_AUDIO is not set
    # CONFIG_ACCESSIBILITY is not set
    # CONFIG_INFINIBAND is not set
    CONFIG_EDAC_ATOMIC_SCRUB=y
    CONFIG_EDAC_SUPPORT=y
    CONFIG_RTC_LIB=y
    CONFIG_RTC_CLASS=y
    CONFIG_RTC_HCTOSYS=y
    CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
    CONFIG_RTC_SYSTOHC=y
    CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
    # CONFIG_RTC_DEBUG is not set
    CONFIG_RTC_NVMEM=y
    
    #
    # RTC interfaces
    #
    CONFIG_RTC_INTF_SYSFS=y
    CONFIG_RTC_INTF_PROC=y
    CONFIG_RTC_INTF_DEV=y
    # CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
    # CONFIG_RTC_DRV_TEST is not set
    
    #
    # I2C RTC drivers
    #
    # CONFIG_RTC_DRV_ABB5ZES3 is not set
    # CONFIG_RTC_DRV_ABEOZ9 is not set
    # CONFIG_RTC_DRV_ABX80X is not set
    # CONFIG_RTC_DRV_DS1307 is not set
    # CONFIG_RTC_DRV_DS1374 is not set
    # CONFIG_RTC_DRV_DS1672 is not set
    # CONFIG_RTC_DRV_HYM8563 is not set
    # CONFIG_RTC_DRV_MAX6900 is not set
    CONFIG_RTC_DRV_ROCKCHIP=y
    # CONFIG_RTC_DRV_RS5C372 is not set
    # CONFIG_RTC_DRV_ISL1208 is not set
    # CONFIG_RTC_DRV_ISL12022 is not set
    # CONFIG_RTC_DRV_ISL12026 is not set
    # CONFIG_RTC_DRV_X1205 is not set
    # CONFIG_RTC_DRV_PCF8523 is not set
    # CONFIG_RTC_DRV_PCF85063 is not set
    # CONFIG_RTC_DRV_PCF85363 is not set
    # CONFIG_RTC_DRV_PCF8563 is not set
    # CONFIG_RTC_DRV_PCF8583 is not set
    # CONFIG_RTC_DRV_M41T80 is not set
    # CONFIG_RTC_DRV_BQ32K is not set
    # CONFIG_RTC_DRV_S35390A is not set
    # CONFIG_RTC_DRV_FM3130 is not set
    # CONFIG_RTC_DRV_RX8010 is not set
    # CONFIG_RTC_DRV_RX8581 is not set
    # CONFIG_RTC_DRV_RX8025 is not set
    # CONFIG_RTC_DRV_EM3027 is not set
    # CONFIG_RTC_DRV_RV3028 is not set
    # CONFIG_RTC_DRV_RV3032 is not set
    # CONFIG_RTC_DRV_RV8803 is not set
    # CONFIG_RTC_DRV_SD3078 is not set
    
    #
    # SPI RTC drivers
    #
    # CONFIG_RTC_DRV_M41T93 is not set
    # CONFIG_RTC_DRV_M41T94 is not set
    # CONFIG_RTC_DRV_DS1302 is not set
    # CONFIG_RTC_DRV_DS1305 is not set
    # CONFIG_RTC_DRV_DS1343 is not set
    # CONFIG_RTC_DRV_DS1347 is not set
    # CONFIG_RTC_DRV_DS1390 is not set
    # CONFIG_RTC_DRV_MAX6916 is not set
    # CONFIG_RTC_DRV_R9701 is not set
    # CONFIG_RTC_DRV_RX4581 is not set
    # CONFIG_RTC_DRV_RX6110 is not set
    # CONFIG_RTC_DRV_RS5C348 is not set
    # CONFIG_RTC_DRV_MAX6902 is not set
    # CONFIG_RTC_DRV_PCF2123 is not set
    # CONFIG_RTC_DRV_MCP795 is not set
    CONFIG_RTC_I2C_AND_SPI=y
    
    #
    # SPI and I2C RTC drivers
    #
    # CONFIG_RTC_DRV_DS3232 is not set
    # CONFIG_RTC_DRV_PCF2127 is not set
    # CONFIG_RTC_DRV_RV3029C2 is not set
    
    #
    # Platform RTC drivers
    #
    # CONFIG_RTC_DRV_CMOS is not set
    # CONFIG_RTC_DRV_DS1286 is not set
    # CONFIG_RTC_DRV_DS1511 is not set
    # CONFIG_RTC_DRV_DS1553 is not set
    # CONFIG_RTC_DRV_DS1685_FAMILY is not set
    # CONFIG_RTC_DRV_DS1742 is not set
    # CONFIG_RTC_DRV_DS2404 is not set
    # CONFIG_RTC_DRV_STK17TA8 is not set
    # CONFIG_RTC_DRV_M48T86 is not set
    # CONFIG_RTC_DRV_M48T35 is not set
    # CONFIG_RTC_DRV_M48T59 is not set
    # CONFIG_RTC_DRV_MSM6242 is not set
    # CONFIG_RTC_DRV_BQ4802 is not set
    # CONFIG_RTC_DRV_RP5C01 is not set
    # CONFIG_RTC_DRV_V3020 is not set
    # CONFIG_RTC_DRV_ZYNQMP is not set
    
    #
    # on-CPU RTC drivers
    #
    # CONFIG_RTC_DRV_PL030 is not set
    # CONFIG_RTC_DRV_PL031 is not set
    # CONFIG_RTC_DRV_CADENCE is not set
    # CONFIG_RTC_DRV_FTRTC010 is not set
    # CONFIG_RTC_DRV_R7301 is not set
    
    #
    # HID Sensor RTC drivers
    #
    CONFIG_DMADEVICES=y
    # CONFIG_DMADEVICES_DEBUG is not set
    
    #
    # DMA Devices
    #
    CONFIG_DMA_ENGINE=y
    CONFIG_DMA_OF=y
    # CONFIG_ALTERA_MSGDMA is not set
    # CONFIG_AMBA_PL08X is not set
    # CONFIG_DW_AXI_DMAC is not set
    # CONFIG_FSL_EDMA is not set
    # CONFIG_FSL_QDMA is not set
    # CONFIG_INTEL_IDMA64 is not set
    # CONFIG_NBPFAXI_DMA is not set
    CONFIG_PL330_DMA=y
    # CONFIG_XILINX_ZYNQMP_DPDMA is not set
    # CONFIG_QCOM_HIDMA_MGMT is not set
    # CONFIG_QCOM_HIDMA is not set
    # CONFIG_DW_DMAC is not set
    # CONFIG_SF_PDMA is not set
    
    #
    # DMA Clients
    #
    # CONFIG_ASYNC_TX_DMA is not set
    # CONFIG_DMATEST is not set
    
    #
    # DMABUF options
    #
    CONFIG_DMABUF_CACHE=y
    # CONFIG_DMABUF_DEBUG is not set
    CONFIG_SYNC_FILE=y
    # CONFIG_SW_SYNC is not set
    # CONFIG_UDMABUF is not set
    # CONFIG_DMABUF_MOVE_NOTIFY is not set
    # CONFIG_DMABUF_SELFTESTS is not set
    # CONFIG_DMABUF_HEAPS is not set
    # CONFIG_DMABUF_SYSFS_STATS is not set
    # CONFIG_DMABUF_HEAPS_DEFERRED_FREE is not set
    # CONFIG_DMABUF_HEAPS_PAGE_POOL is not set
    CONFIG_DMABUF_HEAPS_ROCKCHIP=y
    CONFIG_DMABUF_HEAPS_ROCKCHIP_CMA_HEAP=y
    CONFIG_DMABUF_HEAPS_ROCKCHIP_CMA_ALIGNMENT=0
    CONFIG_DMABUF_RK_HEAPS_DEBUG=y
    # CONFIG_DMABUF_RK_HEAPS_DEBUG_PRINT is not set
    # end of DMABUF options
    
    # CONFIG_AUXDISPLAY is not set
    # CONFIG_UIO is not set
    # CONFIG_VFIO is not set
    # CONFIG_VIRT_DRIVERS is not set
    # CONFIG_VIRTIO_MENU is not set
    # CONFIG_VDPA is not set
    # CONFIG_VHOST_MENU is not set
    
    #
    # Microsoft Hyper-V guest support
    #
    # end of Microsoft Hyper-V guest support
    
    # CONFIG_GREYBUS is not set
    CONFIG_STAGING=y
    # CONFIG_PRISM2_USB is not set
    # CONFIG_COMEDI is not set
    # CONFIG_RTLLIB is not set
    CONFIG_RTL8723BS=m
    # CONFIG_R8712U is not set
    # CONFIG_R8188EU is not set
    # CONFIG_VT6656 is not set
    
    #
    # IIO staging drivers
    #
    
    #
    # Accelerometers
    #
    # CONFIG_ADIS16203 is not set
    # CONFIG_ADIS16240 is not set
    # end of Accelerometers
    
    #
    # Analog to digital converters
    #
    # CONFIG_AD7816 is not set
    # CONFIG_AD7280 is not set
    # end of Analog to digital converters
    
    #
    # Analog digital bi-direction converters
    #
    # CONFIG_ADT7316 is not set
    # end of Analog digital bi-direction converters
    
    #
    # Capacitance to digital converters
    #
    # CONFIG_AD7150 is not set
    # CONFIG_AD7746 is not set
    # end of Capacitance to digital converters
    
    #
    # Direct Digital Synthesis
    #
    # CONFIG_AD9832 is not set
    # CONFIG_AD9834 is not set
    # end of Direct Digital Synthesis
    
    #
    # Network Analyzer, Impedance Converters
    #
    # CONFIG_AD5933 is not set
    # end of Network Analyzer, Impedance Converters
    
    #
    # Active energy metering IC
    #
    # CONFIG_ADE7854 is not set
    # end of Active energy metering IC
    
    #
    # Resolver to digital converters
    #
    # CONFIG_AD2S1210 is not set
    # end of Resolver to digital converters
    # end of IIO staging drivers
    
    # CONFIG_STAGING_MEDIA is not set
    
    #
    # Android
    #
    # CONFIG_ASHMEM is not set
    # CONFIG_DEBUG_KINFO is not set
    # CONFIG_ION is not set
    CONFIG_FIQ_DEBUGGER=y
    CONFIG_FIQ_DEBUGGER_NO_SLEEP=y
    # CONFIG_FIQ_DEBUGGER_WAKEUP_IRQ_ALWAYS_ON is not set
    CONFIG_FIQ_DEBUGGER_CONSOLE=y
    CONFIG_FIQ_DEBUGGER_CONSOLE_DEFAULT_ENABLE=y
    # CONFIG_FIQ_DEBUGGER_TRUST_ZONE is not set
    # CONFIG_FIQ_DEBUGGER_UART_OVERLAY is not set
    CONFIG_RK_CONSOLE_THREAD=y
    CONFIG_FIQ_DEBUGGER_FIQ_GLUE=y
    # end of Android
    
    # CONFIG_STAGING_BOARD is not set
    # CONFIG_LTE_GDM724X is not set
    # CONFIG_GS_FPGABOOT is not set
    # CONFIG_UNISYSSPAR is not set
    # CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set
    # CONFIG_FB_TFT is not set
    # CONFIG_KS7010 is not set
    # CONFIG_PI433 is not set
    
    #
    # Gasket devices
    #
    # end of Gasket devices
    
    # CONFIG_XIL_AXIS_FIFO is not set
    # CONFIG_FIELDBUS_DEV is not set
    # CONFIG_WFX is not set
    # CONFIG_GOLDFISH is not set
    # CONFIG_CHROME_PLATFORMS is not set
    # CONFIG_MELLANOX_PLATFORM is not set
    CONFIG_HAVE_CLK=y
    CONFIG_CLKDEV_LOOKUP=y
    CONFIG_HAVE_CLK_PREPARE=y
    CONFIG_COMMON_CLK=y
    CONFIG_COMMON_CLK_PROCFS=y
    
    #
    # Clock driver for ARM Reference designs
    #
    # CONFIG_ICST is not set
    # CONFIG_CLK_SP810 is not set
    # end of Clock driver for ARM Reference designs
    
    # CONFIG_COMMON_CLK_MAX9485 is not set
    # CONFIG_COMMON_CLK_SI5341 is not set
    # CONFIG_COMMON_CLK_SI5351 is not set
    # CONFIG_COMMON_CLK_SI514 is not set
    # CONFIG_COMMON_CLK_SI544 is not set
    # CONFIG_COMMON_CLK_SI570 is not set
    # CONFIG_COMMON_CLK_CDCE706 is not set
    # CONFIG_COMMON_CLK_CDCE925 is not set
    # CONFIG_COMMON_CLK_CS2000_CP is not set
    # CONFIG_CLK_QORIQ is not set
    # CONFIG_COMMON_CLK_PWM is not set
    # CONFIG_COMMON_CLK_VC5 is not set
    # CONFIG_COMMON_CLK_FIXED_MMIO is not set
    CONFIG_COMMON_CLK_ROCKCHIP=y
    CONFIG_CLK_RV1106=y
    # CONFIG_ROCKCHIP_CLK_COMPENSATION is not set
    # CONFIG_ROCKCHIP_CLK_LINK is not set
    # CONFIG_ROCKCHIP_CLK_BOOST is not set
    # CONFIG_ROCKCHIP_CLK_INV is not set
    # CONFIG_ROCKCHIP_CLK_PVTM is not set
    # CONFIG_ROCKCHIP_DDRCLK_SCPI is not set
    # CONFIG_ROCKCHIP_DDRCLK_SIP is not set
    # CONFIG_ROCKCHIP_DDRCLK_SIP_V2 is not set
    # CONFIG_ROCKCHIP_PLL_RK3066 is not set
    # CONFIG_ROCKCHIP_PLL_RK3399 is not set
    # CONFIG_ROCKCHIP_PLL_RK3588 is not set
    # CONFIG_HWSPINLOCK is not set
    
    #
    # Clock Source drivers
    #
    CONFIG_TIMER_OF=y
    CONFIG_TIMER_PROBE=y
    CONFIG_CLKSRC_MMIO=y
    CONFIG_ROCKCHIP_TIMER=y
    # CONFIG_SUN4I_TIMER is not set
    CONFIG_ARM_ARCH_TIMER=y
    # CONFIG_ARM_ARCH_TIMER_EVTSTREAM is not set
    # CONFIG_MTK_TIMER is not set
    # CONFIG_MICROCHIP_PIT64B is not set
    # end of Clock Source drivers
    
    # CONFIG_MAILBOX is not set
    # CONFIG_IOMMU_SUPPORT is not set
    
    #
    # Remoteproc drivers
    #
    # CONFIG_REMOTEPROC is not set
    # end of Remoteproc drivers
    
    #
    # Rpmsg drivers
    #
    # CONFIG_RPMSG_VIRTIO is not set
    # end of Rpmsg drivers
    
    # CONFIG_SOUNDWIRE is not set
    
    #
    # SOC (System On Chip) specific Drivers
    #
    
    #
    # Amlogic SoC drivers
    #
    # end of Amlogic SoC drivers
    
    #
    # Aspeed SoC drivers
    #
    # end of Aspeed SoC drivers
    
    #
    # Broadcom SoC drivers
    #
    # CONFIG_SOC_BRCMSTB is not set
    # end of Broadcom SoC drivers
    
    #
    # NXP/Freescale QorIQ SoC drivers
    #
    # CONFIG_QUICC_ENGINE is not set
    # end of NXP/Freescale QorIQ SoC drivers
    
    #
    # i.MX SoC drivers
    #
    # end of i.MX SoC drivers
    
    #
    # Qualcomm SoC drivers
    #
    # end of Qualcomm SoC drivers
    
    #
    # Rockchip CPU selection
    #
    # CONFIG_CPU_RK312X is not set
    # CONFIG_CPU_RK3036 is not set
    # CONFIG_CPU_RK30XX is not set
    # CONFIG_CPU_RK3188 is not set
    # CONFIG_CPU_RK3288 is not set
    # CONFIG_CPU_RK322X is not set
    CONFIG_CPU_RV1106=y
    # CONFIG_CPU_RV1108 is not set
    # CONFIG_CPU_RV1126 is not set
    # CONFIG_CPU_PX30 is not set
    # CONFIG_CPU_RK1808 is not set
    # CONFIG_CPU_RK3308 is not set
    # CONFIG_CPU_RK3328 is not set
    # CONFIG_CPU_RK3368 is not set
    # CONFIG_CPU_RK3399 is not set
    # CONFIG_CPU_RK3528 is not set
    # CONFIG_CPU_RK3568 is not set
    # CONFIG_CPU_RK3588 is not set
    # end of Rockchip CPU selection
    
    CONFIG_NO_GKI=y
    CONFIG_ROCKCHIP_AMP=y
    CONFIG_ROCKCHIP_CPUINFO=y
    # CONFIG_ROCKCHIP_GRF is not set
    # CONFIG_ROCKCHIP_HW_DECOMPRESS is not set
    # CONFIG_ROCKCHIP_HW_DECOMPRESS_USER is not set
    # CONFIG_ROCKCHIP_IODOMAIN is not set
    # CONFIG_ROCKCHIP_IOMUX is not set
    # CONFIG_ROCKCHIP_IPA is not set
    CONFIG_ROCKCHIP_OPP=y
    # CONFIG_ROCKCHIP_OPTIMIZE_RT_PRIO is not set
    # CONFIG_ROCKCHIP_PERFORMANCE is not set
    # CONFIG_ROCKCHIP_PM_DOMAINS is not set
    CONFIG_ROCKCHIP_PVTM=y
    # CONFIG_ROCKCHIP_RAMDISK is not set
    # CONFIG_ROCKCHIP_SYSTEM_MONITOR is not set
    CONFIG_ROCKCHIP_VENDOR_STORAGE=y
    # CONFIG_ROCKCHIP_MMC_VENDOR_STORAGE is not set
    CONFIG_ROCKCHIP_MTD_VENDOR_STORAGE=y
    # CONFIG_ROCKCHIP_VENDOR_STORAGE_UPDATE_LOADER is not set
    CONFIG_ROCKCHIP_FIQ_DEBUGGER=y
    # CONFIG_ROCKCHIP_DEBUG is not set
    CONFIG_ROCKCHIP_MINI_KERNEL=y
    # CONFIG_ROCKCHIP_THUNDER_BOOT is not set
    CONFIG_ROCKCHIP_NPOR_POWERGOOD=y
    CONFIG_RK_CMA_PROCFS=y
    CONFIG_RK_DMABUF_PROCFS=y
    CONFIG_RK_MEMBLOCK_PROCFS=y
    # CONFIG_SOC_TI is not set
    
    #
    # Xilinx SoC drivers
    #
    # CONFIG_XILINX_VCU is not set
    # end of Xilinx SoC drivers
    # end of SOC (System On Chip) specific Drivers
    
    CONFIG_PM_DEVFREQ=y
    
    #
    # DEVFREQ Governors
    #
    CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y
    # CONFIG_DEVFREQ_GOV_PERFORMANCE is not set
    # CONFIG_DEVFREQ_GOV_POWERSAVE is not set
    CONFIG_DEVFREQ_GOV_USERSPACE=y
    # CONFIG_DEVFREQ_GOV_PASSIVE is not set
    
    #
    # DEVFREQ Drivers
    #
    # CONFIG_ARM_ROCKCHIP_BUS_DEVFREQ is not set
    # CONFIG_ARM_ROCKCHIP_DMC_DEVFREQ is not set
    # CONFIG_PM_DEVFREQ_EVENT is not set
    CONFIG_EXTCON=y
    
    #
    # Extcon Device Drivers
    #
    # CONFIG_EXTCON_ADC_JACK is not set
    # CONFIG_EXTCON_FSA9480 is not set
    # CONFIG_EXTCON_GPIO is not set
    # CONFIG_EXTCON_MAX3355 is not set
    # CONFIG_EXTCON_PTN5150 is not set
    # CONFIG_EXTCON_RT8973A is not set
    # CONFIG_EXTCON_SM5502 is not set
    # CONFIG_EXTCON_USB_GPIO is not set
    # CONFIG_MEMORY is not set
    CONFIG_IIO=y
    CONFIG_IIO_BUFFER=y
    # CONFIG_IIO_BUFFER_CB is not set
    # CONFIG_IIO_BUFFER_DMA is not set
    # CONFIG_IIO_BUFFER_DMAENGINE is not set
    # CONFIG_IIO_BUFFER_HW_CONSUMER is not set
    CONFIG_IIO_KFIFO_BUF=y
    CONFIG_IIO_TRIGGERED_BUFFER=y
    # CONFIG_IIO_CONFIGFS is not set
    CONFIG_IIO_TRIGGER=y
    CONFIG_IIO_CONSUMERS_PER_TRIGGER=2
    # CONFIG_IIO_SW_DEVICE is not set
    # CONFIG_IIO_SW_TRIGGER is not set
    # CONFIG_IIO_TRIGGERED_EVENT is not set
    
    #
    # Accelerometers
    #
    # CONFIG_ADIS16201 is not set
    # CONFIG_ADIS16209 is not set
    # CONFIG_ADXL345_I2C is not set
    # CONFIG_ADXL345_SPI is not set
    # CONFIG_ADXL372_SPI is not set
    # CONFIG_ADXL372_I2C is not set
    # CONFIG_BMA180 is not set
    # CONFIG_BMA220 is not set
    # CONFIG_BMA400 is not set
    # CONFIG_BMC150_ACCEL is not set
    # CONFIG_DA280 is not set
    # CONFIG_DA311 is not set
    # CONFIG_DMARD06 is not set
    # CONFIG_DMARD09 is not set
    # CONFIG_DMARD10 is not set
    # CONFIG_IIO_ST_ACCEL_3AXIS is not set
    # CONFIG_KXSD9 is not set
    # CONFIG_KXCJK1013 is not set
    # CONFIG_MC3230 is not set
    # CONFIG_MMA7455_I2C is not set
    # CONFIG_MMA7455_SPI is not set
    # CONFIG_MMA7660 is not set
    # CONFIG_MMA8452 is not set
    # CONFIG_MMA9551 is not set
    # CONFIG_MMA9553 is not set
    # CONFIG_MXC4005 is not set
    # CONFIG_MXC6255 is not set
    # CONFIG_SCA3000 is not set
    # CONFIG_STK8312 is not set
    # CONFIG_STK8BA50 is not set
    # end of Accelerometers
    
    #
    # Analog to digital converters
    #
    # CONFIG_AD7091R5 is not set
    # CONFIG_AD7124 is not set
    # CONFIG_AD7192 is not set
    # CONFIG_AD7266 is not set
    # CONFIG_AD7291 is not set
    # CONFIG_AD7292 is not set
    # CONFIG_AD7298 is not set
    # CONFIG_AD7476 is not set
    # CONFIG_AD7606_IFACE_PARALLEL is not set
    # CONFIG_AD7606_IFACE_SPI is not set
    # CONFIG_AD7766 is not set
    # CONFIG_AD7768_1 is not set
    # CONFIG_AD7780 is not set
    # CONFIG_AD7791 is not set
    # CONFIG_AD7793 is not set
    # CONFIG_AD7887 is not set
    # CONFIG_AD7923 is not set
    # CONFIG_AD7949 is not set
    # CONFIG_AD799X is not set
    # CONFIG_ADI_AXI_ADC is not set
    # CONFIG_CC10001_ADC is not set
    # CONFIG_ENVELOPE_DETECTOR is not set
    # CONFIG_HI8435 is not set
    # CONFIG_HX711 is not set
    # CONFIG_INA2XX_ADC is not set
    # CONFIG_LTC2471 is not set
    # CONFIG_LTC2485 is not set
    # CONFIG_LTC2496 is not set
    # CONFIG_LTC2497 is not set
    # CONFIG_MAX1027 is not set
    # CONFIG_MAX11100 is not set
    # CONFIG_MAX1118 is not set
    # CONFIG_MAX1241 is not set
    # CONFIG_MAX1363 is not set
    # CONFIG_MAX9611 is not set
    # CONFIG_MCP320X is not set
    # CONFIG_MCP3422 is not set
    # CONFIG_MCP3911 is not set
    # CONFIG_NAU7802 is not set
    CONFIG_ROCKCHIP_SARADC=y
    # CONFIG_ROCKCHIP_SARADC_TEST_CHN is not set
    # CONFIG_SD_ADC_MODULATOR is not set
    # CONFIG_TI_ADC081C is not set
    # CONFIG_TI_ADC0832 is not set
    # CONFIG_TI_ADC084S021 is not set
    # CONFIG_TI_ADC12138 is not set
    # CONFIG_TI_ADC108S102 is not set
    # CONFIG_TI_ADC128S052 is not set
    # CONFIG_TI_ADC161S626 is not set
    # CONFIG_TI_ADS1015 is not set
    # CONFIG_TI_ADS7950 is not set
    # CONFIG_TI_ADS8344 is not set
    # CONFIG_TI_ADS8688 is not set
    # CONFIG_TI_ADS124S08 is not set
    # CONFIG_TI_TLC4541 is not set
    # CONFIG_VF610_ADC is not set
    # CONFIG_XILINX_XADC is not set
    # end of Analog to digital converters
    
    #
    # Analog Front Ends
    #
    # CONFIG_IIO_RESCALE is not set
    # end of Analog Front Ends
    
    #
    # Amplifiers
    #
    # CONFIG_AD8366 is not set
    # CONFIG_HMC425 is not set
    # end of Amplifiers
    
    #
    # Chemical Sensors
    #
    # CONFIG_ATLAS_PH_SENSOR is not set
    # CONFIG_ATLAS_EZO_SENSOR is not set
    # CONFIG_BME680 is not set
    # CONFIG_CCS811 is not set
    # CONFIG_IAQCORE is not set
    # CONFIG_SCD30_CORE is not set
    # CONFIG_SENSIRION_SGP30 is not set
    # CONFIG_SPS30 is not set
    # CONFIG_VZ89X is not set
    # end of Chemical Sensors
    
    #
    # Hid Sensor IIO Common
    #
    # end of Hid Sensor IIO Common
    
    #
    # SSP Sensor Common
    #
    # CONFIG_IIO_SSP_SENSORHUB is not set
    # end of SSP Sensor Common
    
    #
    # Digital to analog converters
    #
    # CONFIG_AD5064 is not set
    # CONFIG_AD5360 is not set
    # CONFIG_AD5380 is not set
    # CONFIG_AD5421 is not set
    # CONFIG_AD5446 is not set
    # CONFIG_AD5449 is not set
    # CONFIG_AD5592R is not set
    # CONFIG_AD5593R is not set
    # CONFIG_AD5504 is not set
    # CONFIG_AD5624R_SPI is not set
    # CONFIG_AD5686_SPI is not set
    # CONFIG_AD5696_I2C is not set
    # CONFIG_AD5755 is not set
    # CONFIG_AD5758 is not set
    # CONFIG_AD5761 is not set
    # CONFIG_AD5764 is not set
    # CONFIG_AD5770R is not set
    # CONFIG_AD5791 is not set
    # CONFIG_AD7303 is not set
    # CONFIG_AD8801 is not set
    # CONFIG_DPOT_DAC is not set
    # CONFIG_DS4424 is not set
    # CONFIG_LTC1660 is not set
    # CONFIG_LTC2632 is not set
    # CONFIG_M62332 is not set
    # CONFIG_MAX517 is not set
    # CONFIG_MAX5821 is not set
    # CONFIG_MCP4725 is not set
    # CONFIG_MCP4922 is not set
    # CONFIG_TI_DAC082S085 is not set
    # CONFIG_TI_DAC5571 is not set
    # CONFIG_TI_DAC7311 is not set
    # CONFIG_TI_DAC7612 is not set
    # CONFIG_VF610_DAC is not set
    # end of Digital to analog converters
    
    #
    # IIO dummy driver
    #
    # end of IIO dummy driver
    
    #
    # Frequency Synthesizers DDS/PLL
    #
    
    #
    # Clock Generator/Distribution
    #
    # CONFIG_AD9523 is not set
    # end of Clock Generator/Distribution
    
    #
    # Phase-Locked Loop (PLL) frequency synthesizers
    #
    # CONFIG_ADF4350 is not set
    # CONFIG_ADF4371 is not set
    # end of Phase-Locked Loop (PLL) frequency synthesizers
    # end of Frequency Synthesizers DDS/PLL
    
    #
    # Digital gyroscope sensors
    #
    # CONFIG_ADIS16080 is not set
    # CONFIG_ADIS16130 is not set
    # CONFIG_ADIS16136 is not set
    # CONFIG_ADIS16260 is not set
    # CONFIG_ADXRS290 is not set
    # CONFIG_ADXRS450 is not set
    # CONFIG_BMG160 is not set
    # CONFIG_FXAS21002C is not set
    # CONFIG_MPU3050_I2C is not set
    # CONFIG_IIO_ST_GYRO_3AXIS is not set
    # CONFIG_ITG3200 is not set
    # end of Digital gyroscope sensors
    
    #
    # Health Sensors
    #
    
    #
    # Heart Rate Monitors
    #
    # CONFIG_AFE4403 is not set
    # CONFIG_AFE4404 is not set
    # CONFIG_MAX30100 is not set
    # CONFIG_MAX30102 is not set
    # end of Heart Rate Monitors
    # end of Health Sensors
    
    #
    # Humidity sensors
    #
    # CONFIG_AM2315 is not set
    # CONFIG_DHT11 is not set
    # CONFIG_HDC100X is not set
    # CONFIG_HDC2010 is not set
    # CONFIG_HTS221 is not set
    # CONFIG_HTU21 is not set
    # CONFIG_SI7005 is not set
    # CONFIG_SI7020 is not set
    # end of Humidity sensors
    
    #
    # Inertial measurement units
    #
    # CONFIG_ADIS16400 is not set
    # CONFIG_ADIS16460 is not set
    # CONFIG_ADIS16475 is not set
    # CONFIG_ADIS16480 is not set
    # CONFIG_BMI160_I2C is not set
    # CONFIG_BMI160_SPI is not set
    # CONFIG_FXOS8700_I2C is not set
    # CONFIG_FXOS8700_SPI is not set
    # CONFIG_KMX61 is not set
    # CONFIG_INV_ICM42600_I2C is not set
    # CONFIG_INV_ICM42600_SPI is not set
    # CONFIG_INV_MPU6050_I2C is not set
    # CONFIG_INV_MPU6050_SPI is not set
    # CONFIG_IIO_ST_LSM6DSR is not set
    # CONFIG_IIO_ST_LSM6DSX is not set
    # end of Inertial measurement units
    
    #
    # Light sensors
    #
    # CONFIG_ADJD_S311 is not set
    # CONFIG_ADUX1020 is not set
    # CONFIG_AL3010 is not set
    # CONFIG_AL3320A is not set
    # CONFIG_APDS9300 is not set
    # CONFIG_APDS9960 is not set
    # CONFIG_AS73211 is not set
    # CONFIG_BH1750 is not set
    # CONFIG_BH1780 is not set
    # CONFIG_CM32181 is not set
    # CONFIG_CM3232 is not set
    # CONFIG_CM3323 is not set
    # CONFIG_CM3605 is not set
    # CONFIG_CM36651 is not set
    # CONFIG_GP2AP002 is not set
    # CONFIG_GP2AP020A00F is not set
    # CONFIG_SENSORS_ISL29018 is not set
    # CONFIG_SENSORS_ISL29028 is not set
    # CONFIG_ISL29125 is not set
    # CONFIG_JSA1212 is not set
    # CONFIG_RPR0521 is not set
    # CONFIG_LTR501 is not set
    # CONFIG_LV0104CS is not set
    # CONFIG_MAX44000 is not set
    # CONFIG_MAX44009 is not set
    # CONFIG_NOA1305 is not set
    # CONFIG_OPT3001 is not set
    # CONFIG_PA12203001 is not set
    # CONFIG_SI1133 is not set
    # CONFIG_SI1145 is not set
    # CONFIG_STK3310 is not set
    # CONFIG_ST_UVIS25 is not set
    # CONFIG_TCS3414 is not set
    # CONFIG_TCS3472 is not set
    # CONFIG_SENSORS_TSL2563 is not set
    # CONFIG_TSL2583 is not set
    # CONFIG_TSL2772 is not set
    # CONFIG_TSL4531 is not set
    # CONFIG_UCS12CM0 is not set
    # CONFIG_US5182D is not set
    # CONFIG_VCNL4000 is not set
    # CONFIG_VCNL4035 is not set
    # CONFIG_VEML6030 is not set
    # CONFIG_VEML6070 is not set
    # CONFIG_VL6180 is not set
    # CONFIG_ZOPT2201 is not set
    # end of Light sensors
    
    #
    # Magnetometer sensors
    #
    # CONFIG_AK8974 is not set
    # CONFIG_AK8975 is not set
    # CONFIG_AK09911 is not set
    # CONFIG_BMC150_MAGN_I2C is not set
    # CONFIG_BMC150_MAGN_SPI is not set
    # CONFIG_MAG3110 is not set
    # CONFIG_MMC35240 is not set
    # CONFIG_IIO_ST_MAGN_3AXIS is not set
    # CONFIG_SENSORS_HMC5843_I2C is not set
    # CONFIG_SENSORS_HMC5843_SPI is not set
    # CONFIG_SENSORS_RM3100_I2C is not set
    # CONFIG_SENSORS_RM3100_SPI is not set
    # end of Magnetometer sensors
    
    #
    # Multiplexers
    #
    # CONFIG_IIO_MUX is not set
    # end of Multiplexers
    
    #
    # Inclinometer sensors
    #
    # end of Inclinometer sensors
    
    #
    # Triggers - standalone
    #
    # CONFIG_IIO_INTERRUPT_TRIGGER is not set
    # CONFIG_IIO_SYSFS_TRIGGER is not set
    # end of Triggers - standalone
    
    #
    # Linear and angular position sensors
    #
    # end of Linear and angular position sensors
    
    #
    # Digital potentiometers
    #
    # CONFIG_AD5272 is not set
    # CONFIG_DS1803 is not set
    # CONFIG_MAX5432 is not set
    # CONFIG_MAX5481 is not set
    # CONFIG_MAX5487 is not set
    # CONFIG_MCP4018 is not set
    # CONFIG_MCP4131 is not set
    # CONFIG_MCP4531 is not set
    # CONFIG_MCP41010 is not set
    # CONFIG_TPL0102 is not set
    # end of Digital potentiometers
    
    #
    # Digital potentiostats
    #
    # CONFIG_LMP91000 is not set
    # end of Digital potentiostats
    
    #
    # Pressure sensors
    #
    # CONFIG_ABP060MG is not set
    # CONFIG_BMP280 is not set
    # CONFIG_DLHL60D is not set
    # CONFIG_DPS310 is not set
    # CONFIG_HP03 is not set
    # CONFIG_ICP10100 is not set
    # CONFIG_MPL115_I2C is not set
    # CONFIG_MPL115_SPI is not set
    # CONFIG_MPL3115 is not set
    # CONFIG_MS5611 is not set
    # CONFIG_MS5637 is not set
    # CONFIG_IIO_ST_PRESS is not set
    # CONFIG_T5403 is not set
    # CONFIG_HP206C is not set
    # CONFIG_ZPA2326 is not set
    # end of Pressure sensors
    
    #
    # Lightning sensors
    #
    # CONFIG_AS3935 is not set
    # end of Lightning sensors
    
    #
    # Proximity and distance sensors
    #
    # CONFIG_ISL29501 is not set
    # CONFIG_LIDAR_LITE_V2 is not set
    # CONFIG_MB1232 is not set
    # CONFIG_PING is not set
    # CONFIG_RFD77402 is not set
    # CONFIG_SRF04 is not set
    # CONFIG_SX9310 is not set
    # CONFIG_SX9500 is not set
    # CONFIG_SRF08 is not set
    # CONFIG_VCNL3020 is not set
    # CONFIG_VL53L0X_I2C is not set
    # end of Proximity and distance sensors
    
    #
    # Resolver to digital converters
    #
    # CONFIG_AD2S90 is not set
    # CONFIG_AD2S1200 is not set
    # end of Resolver to digital converters
    
    #
    # Temperature sensors
    #
    # CONFIG_LTC2983 is not set
    # CONFIG_MAXIM_THERMOCOUPLE is not set
    # CONFIG_MLX90614 is not set
    # CONFIG_MLX90632 is not set
    # CONFIG_TMP006 is not set
    # CONFIG_TMP007 is not set
    # CONFIG_TSYS01 is not set
    # CONFIG_TSYS02D is not set
    # CONFIG_MAX31856 is not set
    # end of Temperature sensors
    
    CONFIG_PWM=y
    CONFIG_PWM_SYSFS=y
    # CONFIG_PWM_DEBUG is not set
    # CONFIG_PWM_FSL_FTM is not set
    # CONFIG_PWM_PCA9685 is not set
    CONFIG_PWM_ROCKCHIP=y
    # CONFIG_PWM_ROCKCHIP_ONESHOT is not set
    
    #
    # IRQ chip support
    #
    CONFIG_IRQCHIP=y
    CONFIG_ARM_GIC=y
    CONFIG_ARM_GIC_MAX_NR=1
    # CONFIG_AL_FIC is not set
    # end of IRQ chip support
    
    # CONFIG_IPACK_BUS is not set
    CONFIG_ARCH_HAS_RESET_CONTROLLER=y
    CONFIG_RESET_CONTROLLER=y
    # CONFIG_RESET_TI_SYSCON is not set
    
    #
    # PHY Subsystem
    #
    CONFIG_GENERIC_PHY=y
    # CONFIG_BCM_KONA_USB2_PHY is not set
    # CONFIG_PHY_CADENCE_TORRENT is not set
    # CONFIG_PHY_CADENCE_DPHY is not set
    # CONFIG_PHY_CADENCE_SIERRA is not set
    # CONFIG_PHY_CADENCE_SALVO is not set
    # CONFIG_PHY_FSL_IMX8MQ_USB is not set
    # CONFIG_PHY_MIXEL_MIPI_DPHY is not set
    # CONFIG_PHY_PXA_28NM_HSIC is not set
    # CONFIG_PHY_PXA_28NM_USB2 is not set
    # CONFIG_PHY_CPCAP_USB is not set
    # CONFIG_PHY_MAPPHONE_MDM6600 is not set
    # CONFIG_PHY_OCELOT_SERDES is not set
    CONFIG_PHY_ROCKCHIP_CSI2_DPHY=m
    # CONFIG_PHY_ROCKCHIP_DP is not set
    # CONFIG_PHY_ROCKCHIP_DPHY_RX0 is not set
    # CONFIG_PHY_ROCKCHIP_EMMC is not set
    # CONFIG_PHY_ROCKCHIP_INNO_COMBPHY is not set
    # CONFIG_PHY_ROCKCHIP_INNO_HDMI is not set
    CONFIG_PHY_ROCKCHIP_INNO_USB2=y
    # CONFIG_PHY_ROCKCHIP_INNO_USB3 is not set
    # CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY is not set
    CONFIG_PHY_ROCKCHIP_MIPI_RX=y
    # CONFIG_PHY_ROCKCHIP_NANENG_COMBO_PHY is not set
    # CONFIG_PHY_ROCKCHIP_NANENG_EDP is not set
    # CONFIG_PHY_ROCKCHIP_NANENG_USB2 is not set
    # CONFIG_PHY_ROCKCHIP_PCIE is not set
    # CONFIG_PHY_ROCKCHIP_SAMSUNG_DCPHY is not set
    # CONFIG_PHY_ROCKCHIP_SAMSUNG_HDPTX is not set
    # CONFIG_PHY_ROCKCHIP_SAMSUNG_HDPTX_HDMI is not set
    # CONFIG_PHY_ROCKCHIP_SNPS_PCIE3 is not set
    # CONFIG_PHY_ROCKCHIP_TYPEC is not set
    # CONFIG_PHY_ROCKCHIP_USB is not set
    # CONFIG_PHY_ROCKCHIP_USBDP is not set
    # end of PHY Subsystem
    
    # CONFIG_POWERCAP is not set
    # CONFIG_MCB is not set
    # CONFIG_RAS is not set
    
    #
    # Android
    #
    CONFIG_ANDROID=y
    # CONFIG_ANDROID_BINDER_IPC is not set
    # CONFIG_ANDROID_DEBUG_SYMBOLS is not set
    # CONFIG_ANDROID_KABI_RESERVE is not set
    # CONFIG_ANDROID_VENDOR_OEM_DATA is not set
    # end of Android
    
    # CONFIG_DAX is not set
    CONFIG_NVMEM=y
    CONFIG_NVMEM_SYSFS=y
    # CONFIG_ROCKCHIP_EFUSE is not set
    CONFIG_ROCKCHIP_OTP=y
    
    #
    # HW tracing support
    #
    # CONFIG_STM is not set
    # CONFIG_INTEL_TH is not set
    # end of HW tracing support
    
    # CONFIG_FPGA is not set
    # CONFIG_FSI is not set
    # CONFIG_TEE is not set
    CONFIG_PM_OPP=y
    # CONFIG_SIOX is not set
    # CONFIG_SLIMBUS is not set
    # CONFIG_INTERCONNECT is not set
    # CONFIG_COUNTER is not set
    # CONFIG_MOST is not set
    # CONFIG_RK_FLASH is not set
    # CONFIG_RK_NAND is not set
    
    #
    # Headset device support
    #
    # CONFIG_RK_HEADSET is not set
    # end of Headset device support
    
    #
    # RKNPU
    #
    CONFIG_ROCKCHIP_RKNPU=m
    # CONFIG_ROCKCHIP_RKNPU_DEBUG_FS is not set
    CONFIG_ROCKCHIP_RKNPU_PROC_FS=y
    # CONFIG_ROCKCHIP_RKNPU_FENCE is not set
    # CONFIG_ROCKCHIP_RKNPU_SRAM is not set
    # CONFIG_ROCKCHIP_RKNPU_DRM_GEM is not set
    CONFIG_ROCKCHIP_RKNPU_DMA_HEAP=y
    # end of RKNPU
    # end of Device Drivers
    
    #
    # File systems
    #
    CONFIG_DCACHE_WORD_ACCESS=y
    # CONFIG_VALIDATE_FS_PARSER is not set
    CONFIG_FS_IOMAP=y
    # CONFIG_EXT2_FS is not set
    # CONFIG_EXT3_FS is not set
    CONFIG_EXT4_FS=y
    CONFIG_EXT4_USE_FOR_EXT2=y
    # CONFIG_EXT4_FS_POSIX_ACL is not set
    # CONFIG_EXT4_FS_SECURITY is not set
    # CONFIG_EXT4_DEBUG is not set
    CONFIG_JBD2=y
    # CONFIG_JBD2_DEBUG is not set
    CONFIG_FS_MBCACHE=y
    # CONFIG_REISERFS_FS is not set
    # CONFIG_JFS_FS is not set
    # CONFIG_XFS_FS is not set
    # CONFIG_GFS2_FS is not set
    # CONFIG_OCFS2_FS is not set
    # CONFIG_BTRFS_FS is not set
    # CONFIG_NILFS2_FS is not set
    # CONFIG_F2FS_FS is not set
    CONFIG_FS_POSIX_ACL=y
    CONFIG_EXPORTFS=y
    CONFIG_EXPORTFS_BLOCK_OPS=y
    CONFIG_FILE_LOCKING=y
    CONFIG_MANDATORY_FILE_LOCKING=y
    # CONFIG_FS_ENCRYPTION is not set
    # CONFIG_FS_VERITY is not set
    CONFIG_FSNOTIFY=y
    # CONFIG_DNOTIFY is not set
    CONFIG_INOTIFY_USER=y
    # CONFIG_FANOTIFY is not set
    # CONFIG_QUOTA is not set
    # CONFIG_AUTOFS4_FS is not set
    # CONFIG_AUTOFS_FS is not set
    # CONFIG_FUSE_FS is not set
    # CONFIG_OVERLAY_FS is not set
    # CONFIG_INCREMENTAL_FS is not set
    
    #
    # Caches
    #
    # CONFIG_FSCACHE is not set
    # end of Caches
    
    #
    # CD-ROM/DVD Filesystems
    #
    # CONFIG_ISO9660_FS is not set
    # CONFIG_UDF_FS is not set
    # end of CD-ROM/DVD Filesystems
    
    #
    # DOS/FAT/EXFAT/NT Filesystems
    #
    CONFIG_FAT_FS=y
    # CONFIG_MSDOS_FS is not set
    CONFIG_VFAT_FS=y
    CONFIG_FAT_DEFAULT_CODEPAGE=437
    CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
    # CONFIG_FAT_DEFAULT_UTF8 is not set
    # CONFIG_EXFAT_FS is not set
    # CONFIG_NTFS_FS is not set
    # end of DOS/FAT/EXFAT/NT Filesystems
    
    #
    # Pseudo filesystems
    #
    CONFIG_PROC_FS=y
    CONFIG_PROC_SYSCTL=y
    CONFIG_PROC_PAGE_MONITOR=y
    # CONFIG_PROC_CHILDREN is not set
    CONFIG_KERNFS=y
    CONFIG_SYSFS=y
    CONFIG_TMPFS=y
    # CONFIG_TMPFS_POSIX_ACL is not set
    # CONFIG_TMPFS_XATTR is not set
    CONFIG_MEMFD_CREATE=y
    CONFIG_CONFIGFS_FS=y
    # end of Pseudo filesystems
    
    CONFIG_MISC_FILESYSTEMS=y
    # CONFIG_ORANGEFS_FS is not set
    # CONFIG_ADFS_FS is not set
    # CONFIG_AFFS_FS is not set
    # CONFIG_ECRYPT_FS is not set
    # CONFIG_HFS_FS is not set
    # CONFIG_HFSPLUS_FS is not set
    # CONFIG_BEFS_FS is not set
    # CONFIG_BFS_FS is not set
    # CONFIG_EFS_FS is not set
    CONFIG_JFFS2_FS=y
    CONFIG_JFFS2_FS_DEBUG=0
    CONFIG_JFFS2_FS_WRITEBUFFER=y
    # CONFIG_JFFS2_FS_WBUF_VERIFY is not set
    # CONFIG_JFFS2_SUMMARY is not set
    # CONFIG_JFFS2_FS_XATTR is not set
    CONFIG_JFFS2_COMPRESSION_OPTIONS=y
    CONFIG_JFFS2_ZLIB=y
    # CONFIG_JFFS2_LZO is not set
    # CONFIG_JFFS2_RTIME is not set
    # CONFIG_JFFS2_RUBIN is not set
    # CONFIG_JFFS2_CMODE_NONE is not set
    CONFIG_JFFS2_CMODE_PRIORITY=y
    # CONFIG_JFFS2_CMODE_SIZE is not set
    # CONFIG_JFFS2_CMODE_FAVOURLZO is not set
    CONFIG_UBIFS_FS=y
    CONFIG_UBIFS_FS_ADVANCED_COMPR=y
    CONFIG_UBIFS_FS_LZO=y
    CONFIG_UBIFS_FS_ZLIB=y
    # CONFIG_UBIFS_FS_ZSTD is not set
    # CONFIG_UBIFS_ATIME_SUPPORT is not set
    CONFIG_UBIFS_FS_XATTR=y
    CONFIG_UBIFS_FS_SECURITY=y
    # CONFIG_UBIFS_FS_AUTHENTICATION is not set
    # CONFIG_CRAMFS is not set
    CONFIG_SQUASHFS=y
    CONFIG_SQUASHFS_FILE_CACHE=y
    # CONFIG_SQUASHFS_FILE_DIRECT is not set
    CONFIG_SQUASHFS_DECOMP_SINGLE=y
    # CONFIG_SQUASHFS_DECOMP_MULTI is not set
    # CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU is not set
    # CONFIG_SQUASHFS_XATTR is not set
    # CONFIG_SQUASHFS_ZLIB is not set
    # CONFIG_SQUASHFS_LZ4 is not set
    # CONFIG_SQUASHFS_LZO is not set
    CONFIG_SQUASHFS_XZ=y
    # CONFIG_SQUASHFS_ZSTD is not set
    CONFIG_SQUASHFS_4K_DEVBLK_SIZE=y
    # CONFIG_SQUASHFS_EMBEDDED is not set
    CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3
    # CONFIG_VXFS_FS is not set
    # CONFIG_MINIX_FS is not set
    # CONFIG_OMFS_FS is not set
    # CONFIG_HPFS_FS is not set
    # CONFIG_QNX4FS_FS is not set
    # CONFIG_QNX6FS_FS is not set
    # CONFIG_ROMFS_FS is not set
    # CONFIG_PSTORE is not set
    # CONFIG_SYSV_FS is not set
    # CONFIG_UFS_FS is not set
    # CONFIG_EROFS_FS is not set
    CONFIG_NETWORK_FILESYSTEMS=y
    CONFIG_NFS_FS=y
    CONFIG_NFS_V2=y
    CONFIG_NFS_V3=y
    CONFIG_NFS_V3_ACL=y
    CONFIG_NFS_V4=y
    # CONFIG_NFS_V4_1 is not set
    # CONFIG_NFS_USE_LEGACY_DNS is not set
    CONFIG_NFS_USE_KERNEL_DNS=y
    CONFIG_NFS_DISABLE_UDP_SUPPORT=y
    # CONFIG_NFSD is not set
    CONFIG_GRACE_PERIOD=y
    CONFIG_LOCKD=y
    CONFIG_LOCKD_V4=y
    CONFIG_NFS_ACL_SUPPORT=y
    CONFIG_NFS_COMMON=y
    CONFIG_SUNRPC=y
    CONFIG_SUNRPC_GSS=y
    # CONFIG_SUNRPC_DEBUG is not set
    # CONFIG_CEPH_FS is not set
    # CONFIG_CIFS is not set
    # CONFIG_CODA_FS is not set
    # CONFIG_AFS_FS is not set
    CONFIG_NLS=y
    CONFIG_NLS_DEFAULT="iso8859-1"
    CONFIG_NLS_CODEPAGE_437=y
    # CONFIG_NLS_CODEPAGE_737 is not set
    # CONFIG_NLS_CODEPAGE_775 is not set
    # CONFIG_NLS_CODEPAGE_850 is not set
    # CONFIG_NLS_CODEPAGE_852 is not set
    # CONFIG_NLS_CODEPAGE_855 is not set
    # CONFIG_NLS_CODEPAGE_857 is not set
    # CONFIG_NLS_CODEPAGE_860 is not set
    # CONFIG_NLS_CODEPAGE_861 is not set
    # CONFIG_NLS_CODEPAGE_862 is not set
    # CONFIG_NLS_CODEPAGE_863 is not set
    # CONFIG_NLS_CODEPAGE_864 is not set
    # CONFIG_NLS_CODEPAGE_865 is not set
    # CONFIG_NLS_CODEPAGE_866 is not set
    # CONFIG_NLS_CODEPAGE_869 is not set
    # CONFIG_NLS_CODEPAGE_936 is not set
    # CONFIG_NLS_CODEPAGE_950 is not set
    # CONFIG_NLS_CODEPAGE_932 is not set
    # CONFIG_NLS_CODEPAGE_949 is not set
    # CONFIG_NLS_CODEPAGE_874 is not set
    # CONFIG_NLS_ISO8859_8 is not set
    # CONFIG_NLS_CODEPAGE_1250 is not set
    # CONFIG_NLS_CODEPAGE_1251 is not set
    # CONFIG_NLS_ASCII is not set
    CONFIG_NLS_ISO8859_1=y
    # CONFIG_NLS_ISO8859_2 is not set
    # CONFIG_NLS_ISO8859_3 is not set
    # CONFIG_NLS_ISO8859_4 is not set
    # CONFIG_NLS_ISO8859_5 is not set
    # CONFIG_NLS_ISO8859_6 is not set
    # CONFIG_NLS_ISO8859_7 is not set
    # CONFIG_NLS_ISO8859_9 is not set
    # CONFIG_NLS_ISO8859_13 is not set
    # CONFIG_NLS_ISO8859_14 is not set
    # CONFIG_NLS_ISO8859_15 is not set
    # CONFIG_NLS_KOI8_R is not set
    # CONFIG_NLS_KOI8_U is not set
    # CONFIG_NLS_MAC_ROMAN is not set
    # CONFIG_NLS_MAC_CELTIC is not set
    # CONFIG_NLS_MAC_CENTEURO is not set
    # CONFIG_NLS_MAC_CROATIAN is not set
    # CONFIG_NLS_MAC_CYRILLIC is not set
    # CONFIG_NLS_MAC_GAELIC is not set
    # CONFIG_NLS_MAC_GREEK is not set
    # CONFIG_NLS_MAC_ICELAND is not set
    # CONFIG_NLS_MAC_INUIT is not set
    # CONFIG_NLS_MAC_ROMANIAN is not set
    # CONFIG_NLS_MAC_TURKISH is not set
    # CONFIG_NLS_UTF8 is not set
    # CONFIG_DLM is not set
    # CONFIG_UNICODE is not set
    # end of File systems
    
    #
    # Security options
    #
    CONFIG_KEYS=y
    # CONFIG_KEYS_REQUEST_CACHE is not set
    # CONFIG_PERSISTENT_KEYRINGS is not set
    # CONFIG_ENCRYPTED_KEYS is not set
    # CONFIG_KEY_DH_OPERATIONS is not set
    # CONFIG_SECURITY_DMESG_RESTRICT is not set
    # CONFIG_SECURITY is not set
    # CONFIG_SECURITYFS is not set
    CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
    # CONFIG_HARDENED_USERCOPY is not set
    # CONFIG_FORTIFY_SOURCE is not set
    # CONFIG_STATIC_USERMODEHELPER is not set
    CONFIG_DEFAULT_SECURITY_DAC=y
    CONFIG_LSM="lockdown,yama,loadpin,safesetid,integrity,bpf"
    
    #
    # Kernel hardening options
    #
    
    #
    # Memory initialization
    #
    CONFIG_INIT_STACK_NONE=y
    # CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
    # CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
    # end of Memory initialization
    # end of Kernel hardening options
    # end of Security options
    
    CONFIG_CRYPTO=y
    
    #
    # Crypto core or helper
    #
    CONFIG_CRYPTO_ALGAPI=y
    CONFIG_CRYPTO_ALGAPI2=y
    CONFIG_CRYPTO_AEAD=m
    CONFIG_CRYPTO_AEAD2=y
    CONFIG_CRYPTO_SKCIPHER=m
    CONFIG_CRYPTO_SKCIPHER2=y
    CONFIG_CRYPTO_HASH=y
    CONFIG_CRYPTO_HASH2=y
    CONFIG_CRYPTO_RNG2=y
    CONFIG_CRYPTO_AKCIPHER2=y
    CONFIG_CRYPTO_AKCIPHER=y
    CONFIG_CRYPTO_KPP2=y
    CONFIG_CRYPTO_ACOMP2=y
    CONFIG_CRYPTO_MANAGER=y
    CONFIG_CRYPTO_MANAGER2=y
    # CONFIG_CRYPTO_USER is not set
    CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
    CONFIG_CRYPTO_GF128MUL=m
    CONFIG_CRYPTO_NULL=m
    CONFIG_CRYPTO_NULL2=y
    # CONFIG_CRYPTO_CRYPTD is not set
    # CONFIG_CRYPTO_AUTHENC is not set
    # CONFIG_CRYPTO_TEST is not set
    
    #
    # Public-key cryptography
    #
    CONFIG_CRYPTO_RSA=y
    # CONFIG_CRYPTO_DH is not set
    # CONFIG_CRYPTO_ECDH is not set
    # CONFIG_CRYPTO_ECRDSA is not set
    # CONFIG_CRYPTO_SM2 is not set
    # CONFIG_CRYPTO_CURVE25519 is not set
    
    #
    # Authenticated Encryption with Associated Data
    #
    CONFIG_CRYPTO_CCM=m
    CONFIG_CRYPTO_GCM=m
    # CONFIG_CRYPTO_CHACHA20POLY1305 is not set
    # CONFIG_CRYPTO_AEGIS128 is not set
    # CONFIG_CRYPTO_SEQIV is not set
    # CONFIG_CRYPTO_ECHAINIV is not set
    
    #
    # Block modes
    #
    # CONFIG_CRYPTO_CBC is not set
    # CONFIG_CRYPTO_CFB is not set
    CONFIG_CRYPTO_CTR=m
    # CONFIG_CRYPTO_CTS is not set
    # CONFIG_CRYPTO_ECB is not set
    # CONFIG_CRYPTO_LRW is not set
    # CONFIG_CRYPTO_OFB is not set
    # CONFIG_CRYPTO_PCBC is not set
    # CONFIG_CRYPTO_XTS is not set
    # CONFIG_CRYPTO_KEYWRAP is not set
    # CONFIG_CRYPTO_ADIANTUM is not set
    # CONFIG_CRYPTO_ESSIV is not set
    
    #
    # Hash modes
    #
    CONFIG_CRYPTO_CMAC=m
    # CONFIG_CRYPTO_HMAC is not set
    # CONFIG_CRYPTO_XCBC is not set
    # CONFIG_CRYPTO_VMAC is not set
    
    #
    # Digest
    #
    CONFIG_CRYPTO_CRC32C=y
    # CONFIG_CRYPTO_CRC32 is not set
    # CONFIG_CRYPTO_XXHASH is not set
    # CONFIG_CRYPTO_BLAKE2B is not set
    # CONFIG_CRYPTO_BLAKE2S is not set
    # CONFIG_CRYPTO_CRCT10DIF is not set
    CONFIG_CRYPTO_GHASH=m
    # CONFIG_CRYPTO_POLY1305 is not set
    # CONFIG_CRYPTO_MD4 is not set
    # CONFIG_CRYPTO_MD5 is not set
    # CONFIG_CRYPTO_MICHAEL_MIC is not set
    # CONFIG_CRYPTO_RMD128 is not set
    # CONFIG_CRYPTO_RMD160 is not set
    # CONFIG_CRYPTO_RMD256 is not set
    # CONFIG_CRYPTO_RMD320 is not set
    # CONFIG_CRYPTO_SHA1 is not set
    CONFIG_CRYPTO_SHA256=m
    # CONFIG_CRYPTO_SHA512 is not set
    # CONFIG_CRYPTO_SHA3 is not set
    # CONFIG_CRYPTO_SM3 is not set
    # CONFIG_CRYPTO_STREEBOG is not set
    # CONFIG_CRYPTO_TGR192 is not set
    # CONFIG_CRYPTO_WP512 is not set
    
    #
    # Ciphers
    #
    CONFIG_CRYPTO_AES=m
    # CONFIG_CRYPTO_AES_TI is not set
    # CONFIG_CRYPTO_BLOWFISH is not set
    # CONFIG_CRYPTO_CAMELLIA is not set
    # CONFIG_CRYPTO_CAST5 is not set
    # CONFIG_CRYPTO_CAST6 is not set
    # CONFIG_CRYPTO_DES is not set
    # CONFIG_CRYPTO_FCRYPT is not set
    # CONFIG_CRYPTO_SALSA20 is not set
    # CONFIG_CRYPTO_CHACHA20 is not set
    # CONFIG_CRYPTO_SERPENT is not set
    # CONFIG_CRYPTO_SM4 is not set
    # CONFIG_CRYPTO_TWOFISH is not set
    
    #
    # Compression
    #
    CONFIG_CRYPTO_DEFLATE=y
    CONFIG_CRYPTO_LZO=y
    # CONFIG_CRYPTO_842 is not set
    # CONFIG_CRYPTO_LZ4 is not set
    # CONFIG_CRYPTO_LZ4HC is not set
    CONFIG_CRYPTO_ZSTD=y
    
    #
    # Random Number Generation
    #
    # CONFIG_CRYPTO_ANSI_CPRNG is not set
    # CONFIG_CRYPTO_DRBG_MENU is not set
    # CONFIG_CRYPTO_JITTERENTROPY is not set
    # CONFIG_CRYPTO_USER_API_HASH is not set
    # CONFIG_CRYPTO_USER_API_SKCIPHER is not set
    # CONFIG_CRYPTO_USER_API_RNG is not set
    # CONFIG_CRYPTO_USER_API_AEAD is not set
    CONFIG_CRYPTO_HASH_INFO=y
    
    #
    # Crypto library routines
    #
    CONFIG_CRYPTO_LIB_AES=m
    CONFIG_CRYPTO_LIB_ARC4=m
    # CONFIG_CRYPTO_LIB_BLAKE2S is not set
    # CONFIG_CRYPTO_LIB_CHACHA is not set
    # CONFIG_CRYPTO_LIB_CURVE25519 is not set
    CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9
    # CONFIG_CRYPTO_LIB_POLY1305 is not set
    # CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
    CONFIG_CRYPTO_LIB_SHA256=m
    # CONFIG_CRYPTO_HW is not set
    CONFIG_ASYMMETRIC_KEY_TYPE=y
    CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
    CONFIG_X509_CERTIFICATE_PARSER=y
    # CONFIG_PKCS8_PRIVATE_KEY_PARSER is not set
    CONFIG_PKCS7_MESSAGE_PARSER=y
    # CONFIG_PKCS7_TEST_KEY is not set
    # CONFIG_SIGNED_PE_FILE_VERIFICATION is not set
    
    #
    # Certificates for signature checking
    #
    CONFIG_SYSTEM_TRUSTED_KEYRING=y
    CONFIG_SYSTEM_TRUSTED_KEYS=""
    # CONFIG_SYSTEM_EXTRA_CERTIFICATE is not set
    # CONFIG_SECONDARY_TRUSTED_KEYRING is not set
    # CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
    # end of Certificates for signature checking
    
    #
    # Library routines
    #
    CONFIG_LINEAR_RANGES=y
    # CONFIG_PACKING is not set
    CONFIG_BITREVERSE=y
    CONFIG_HAVE_ARCH_BITREVERSE=y
    CONFIG_GENERIC_STRNCPY_FROM_USER=y
    CONFIG_GENERIC_STRNLEN_USER=y
    CONFIG_GENERIC_NET_UTILS=y
    # CONFIG_CORDIC is not set
    # CONFIG_PRIME_NUMBERS is not set
    CONFIG_RATIONAL=y
    CONFIG_GENERIC_PCI_IOMAP=y
    CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
    # CONFIG_CRC_CCITT is not set
    CONFIG_CRC16=y
    # CONFIG_CRC_T10DIF is not set
    # CONFIG_CRC_ITU_T is not set
    CONFIG_CRC32=y
    # CONFIG_CRC32_SELFTEST is not set
    CONFIG_CRC32_SLICEBY8=y
    # CONFIG_CRC32_SLICEBY4 is not set
    # CONFIG_CRC32_SARWATE is not set
    # CONFIG_CRC32_BIT is not set
    # CONFIG_CRC64 is not set
    # CONFIG_CRC4 is not set
    # CONFIG_CRC7 is not set
    # CONFIG_LIBCRC32C is not set
    # CONFIG_CRC8 is not set
    CONFIG_XXHASH=y
    # CONFIG_RANDOM32_SELFTEST is not set
    CONFIG_ZLIB_INFLATE=y
    CONFIG_ZLIB_DEFLATE=y
    CONFIG_LZO_COMPRESS=y
    CONFIG_LZO_DECOMPRESS=y
    CONFIG_ZSTD_COMPRESS=y
    CONFIG_ZSTD_DECOMPRESS=y
    CONFIG_XZ_DEC=y
    # CONFIG_XZ_DEC_X86 is not set
    # CONFIG_XZ_DEC_POWERPC is not set
    # CONFIG_XZ_DEC_IA64 is not set
    CONFIG_XZ_DEC_ARM=y
    CONFIG_XZ_DEC_ARMTHUMB=y
    # CONFIG_XZ_DEC_SPARC is not set
    CONFIG_XZ_DEC_BCJ=y
    # CONFIG_XZ_DEC_TEST is not set
    CONFIG_GENERIC_ALLOCATOR=y
    CONFIG_ASSOCIATIVE_ARRAY=y
    CONFIG_HAS_IOMEM=y
    CONFIG_HAS_IOPORT_MAP=y
    CONFIG_HAS_DMA=y
    CONFIG_DMA_OPS=y
    CONFIG_NEED_DMA_MAP_STATE=y
    CONFIG_DMA_DECLARE_COHERENT=y
    CONFIG_ARCH_HAS_SETUP_DMA_OPS=y
    CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y
    CONFIG_DMA_NONCOHERENT_MMAP=y
    CONFIG_DMA_REMAP=y
    CONFIG_DMA_CMA=y
    # CONFIG_DMA_PERNUMA_CMA is not set
    
    #
    # Default contiguous memory area size:
    #
    CONFIG_CMA_SIZE_MBYTES=0
    CONFIG_CMA_SIZE_SEL_MBYTES=y
    # CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set
    # CONFIG_CMA_SIZE_SEL_MIN is not set
    # CONFIG_CMA_SIZE_SEL_MAX is not set
    CONFIG_CMA_ALIGNMENT=8
    # CONFIG_DMA_API_DEBUG is not set
    CONFIG_SGL_ALLOC=y
    CONFIG_DQL=y
    CONFIG_NLATTR=y
    CONFIG_CLZ_TAB=y
    # CONFIG_IRQ_POLL is not set
    CONFIG_MPILIB=y
    CONFIG_LIBFDT=y
    CONFIG_OID_REGISTRY=y
    CONFIG_SBITMAP=y
    # CONFIG_STRING_SELFTEST is not set
    # end of Library routines
    
    #
    # Kernel hacking
    #
    
    #
    # printk and dmesg options
    #
    CONFIG_PRINTK_TIME=y
    # CONFIG_PRINTK_TIME_FROM_ARM_ARCH_TIMER is not set
    # CONFIG_PRINTK_CALLER is not set
    CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
    CONFIG_CONSOLE_LOGLEVEL_QUIET=4
    CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
    # CONFIG_BOOT_PRINTK_DELAY is not set
    # CONFIG_DYNAMIC_DEBUG is not set
    # CONFIG_DYNAMIC_DEBUG_CORE is not set
    CONFIG_SYMBOLIC_ERRNAME=y
    # end of printk and dmesg options
    
    #
    # Compile-time checks and compiler options
    #
    CONFIG_DEBUG_INFO=y
    # CONFIG_DEBUG_INFO_REDUCED is not set
    # CONFIG_DEBUG_INFO_COMPRESSED is not set
    # CONFIG_DEBUG_INFO_SPLIT is not set
    # CONFIG_DEBUG_INFO_DWARF4 is not set
    # CONFIG_DEBUG_INFO_BTF is not set
    # CONFIG_GDB_SCRIPTS is not set
    CONFIG_ENABLE_MUST_CHECK=y
    CONFIG_FRAME_WARN=1024
    # CONFIG_STRIP_ASM_SYMS is not set
    # CONFIG_READABLE_ASM is not set
    # CONFIG_HEADERS_INSTALL is not set
    # CONFIG_DEBUG_SECTION_MISMATCH is not set
    CONFIG_SECTION_MISMATCH_WARN_ONLY=y
    # CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_32B is not set
    # CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
    # end of Compile-time checks and compiler options
    
    #
    # Generic Kernel Debugging Instruments
    #
    # CONFIG_MAGIC_SYSRQ is not set
    CONFIG_DEBUG_FS=y
    CONFIG_DEBUG_FS_ALLOW_ALL=y
    # CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
    # CONFIG_DEBUG_FS_ALLOW_NONE is not set
    CONFIG_HAVE_ARCH_KGDB=y
    # CONFIG_KGDB is not set
    # CONFIG_UBSAN is not set
    # end of Generic Kernel Debugging Instruments
    
    CONFIG_DEBUG_KERNEL=y
    # CONFIG_DEBUG_MISC is not set
    
    #
    # Memory Debugging
    #
    # CONFIG_PAGE_EXTENSION is not set
    # CONFIG_DEBUG_PAGEALLOC is not set
    # CONFIG_PAGE_OWNER is not set
    # CONFIG_PAGE_PINNER is not set
    # CONFIG_PAGE_POISONING is not set
    # CONFIG_DEBUG_WX is not set
    # CONFIG_DEBUG_OBJECTS is not set
    # CONFIG_SLUB_STATS is not set
    CONFIG_HAVE_DEBUG_KMEMLEAK=y
    # CONFIG_DEBUG_KMEMLEAK is not set
    # CONFIG_DEBUG_STACK_USAGE is not set
    # CONFIG_SCHED_STACK_END_CHECK is not set
    # CONFIG_DEBUG_VM is not set
    CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
    # CONFIG_DEBUG_VIRTUAL is not set
    # CONFIG_DEBUG_MEMORY_INIT is not set
    CONFIG_CC_HAS_KASAN_GENERIC=y
    # end of Memory Debugging
    
    # CONFIG_DEBUG_SHIRQ is not set
    
    #
    # Debug Oops, Lockups and Hangs
    #
    # CONFIG_PANIC_ON_OOPS is not set
    CONFIG_PANIC_ON_OOPS_VALUE=0
    CONFIG_PANIC_TIMEOUT=0
    # CONFIG_SOFTLOCKUP_DETECTOR is not set
    # CONFIG_DETECT_HUNG_TASK is not set
    # CONFIG_WQ_WATCHDOG is not set
    # CONFIG_TEST_LOCKUP is not set
    # end of Debug Oops, Lockups and Hangs
    
    #
    # Scheduler Debugging
    #
    # CONFIG_SCHED_DEBUG is not set
    # CONFIG_SCHEDSTATS is not set
    # end of Scheduler Debugging
    
    # CONFIG_DEBUG_TIMEKEEPING is not set
    
    #
    # Lock Debugging (spinlocks, mutexes, etc...)
    #
    CONFIG_LOCK_DEBUGGING_SUPPORT=y
    # CONFIG_PROVE_LOCKING is not set
    # CONFIG_LOCK_STAT is not set
    # CONFIG_DEBUG_RT_MUTEXES is not set
    # CONFIG_DEBUG_SPINLOCK is not set
    # CONFIG_DEBUG_MUTEXES is not set
    # CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
    # CONFIG_DEBUG_RWSEMS is not set
    # CONFIG_DEBUG_LOCK_ALLOC is not set
    # CONFIG_DEBUG_ATOMIC_SLEEP is not set
    # CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
    # CONFIG_LOCK_TORTURE_TEST is not set
    # CONFIG_WW_MUTEX_SELFTEST is not set
    # CONFIG_SCF_TORTURE_TEST is not set
    # end of Lock Debugging (spinlocks, mutexes, etc...)
    
    # CONFIG_STACKTRACE is not set
    # CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set
    # CONFIG_DEBUG_KOBJECT is not set
    
    #
    # Debug kernel data structures
    #
    # CONFIG_DEBUG_LIST is not set
    # CONFIG_DEBUG_PLIST is not set
    # CONFIG_DEBUG_SG is not set
    # CONFIG_DEBUG_NOTIFIERS is not set
    # CONFIG_BUG_ON_DATA_CORRUPTION is not set
    # end of Debug kernel data structures
    
    # CONFIG_DEBUG_CREDENTIALS is not set
    
    #
    # RCU Debugging
    #
    # CONFIG_RCU_SCALE_TEST is not set
    # CONFIG_RCU_TORTURE_TEST is not set
    # CONFIG_RCU_REF_SCALE_TEST is not set
    # CONFIG_RCU_TRACE is not set
    # CONFIG_RCU_EQS_DEBUG is not set
    # end of RCU Debugging
    
    # CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
    # CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
    # CONFIG_LATENCYTOP is not set
    CONFIG_HAVE_FUNCTION_TRACER=y
    CONFIG_HAVE_DYNAMIC_FTRACE=y
    CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
    CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
    CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
    CONFIG_HAVE_C_RECORDMCOUNT=y
    # CONFIG_TRACEFS_DISABLE_AUTOMOUNT is not set
    CONFIG_TRACING_SUPPORT=y
    # CONFIG_FTRACE is not set
    # CONFIG_SAMPLES is not set
    CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y
    # CONFIG_STRICT_DEVMEM is not set
    
    #
    # arm Debugging
    #
    # CONFIG_ARM_PTDUMP_DEBUGFS is not set
    CONFIG_UNWINDER_ARM=y
    CONFIG_ARM_UNWIND=y
    # CONFIG_DEBUG_USER is not set
    # CONFIG_DEBUG_LL is not set
    CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S"
    CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h"
    # CONFIG_PID_IN_CONTEXTIDR is not set
    # CONFIG_CORESIGHT is not set
    # end of arm Debugging
    
    #
    # Kernel Testing and Coverage
    #
    # CONFIG_KUNIT is not set
    # CONFIG_NOTIFIER_ERROR_INJECTION is not set
    # CONFIG_FAULT_INJECTION is not set
    CONFIG_ARCH_HAS_KCOV=y
    CONFIG_CC_HAS_SANCOV_TRACE_PC=y
    # CONFIG_KCOV is not set
    # CONFIG_RUNTIME_TESTING_MENU is not set
    # CONFIG_MEMTEST is not set
    # end of Kernel Testing and Coverage
    # end of Kernel hacking
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737
    • 738
    • 739
    • 740
    • 741
    • 742
    • 743
    • 744
    • 745
    • 746
    • 747
    • 748
    • 749
    • 750
    • 751
    • 752
    • 753
    • 754
    • 755
    • 756
    • 757
    • 758
    • 759
    • 760
    • 761
    • 762
    • 763
    • 764
    • 765
    • 766
    • 767
    • 768
    • 769
    • 770
    • 771
    • 772
    • 773
    • 774
    • 775
    • 776
    • 777
    • 778
    • 779
    • 780
    • 781
    • 782
    • 783
    • 784
    • 785
    • 786
    • 787
    • 788
    • 789
    • 790
    • 791
    • 792
    • 793
    • 794
    • 795
    • 796
    • 797
    • 798
    • 799
    • 800
    • 801
    • 802
    • 803
    • 804
    • 805
    • 806
    • 807
    • 808
    • 809
    • 810
    • 811
    • 812
    • 813
    • 814
    • 815
    • 816
    • 817
    • 818
    • 819
    • 820
    • 821
    • 822
    • 823
    • 824
    • 825
    • 826
    • 827
    • 828
    • 829
    • 830
    • 831
    • 832
    • 833
    • 834
    • 835
    • 836
    • 837
    • 838
    • 839
    • 840
    • 841
    • 842
    • 843
    • 844
    • 845
    • 846
    • 847
    • 848
    • 849
    • 850
    • 851
    • 852
    • 853
    • 854
    • 855
    • 856
    • 857
    • 858
    • 859
    • 860
    • 861
    • 862
    • 863
    • 864
    • 865
    • 866
    • 867
    • 868
    • 869
    • 870
    • 871
    • 872
    • 873
    • 874
    • 875
    • 876
    • 877
    • 878
    • 879
    • 880
    • 881
    • 882
    • 883
    • 884
    • 885
    • 886
    • 887
    • 888
    • 889
    • 890
    • 891
    • 892
    • 893
    • 894
    • 895
    • 896
    • 897
    • 898
    • 899
    • 900
    • 901
    • 902
    • 903
    • 904
    • 905
    • 906
    • 907
    • 908
    • 909
    • 910
    • 911
    • 912
    • 913
    • 914
    • 915
    • 916
    • 917
    • 918
    • 919
    • 920
    • 921
    • 922
    • 923
    • 924
    • 925
    • 926
    • 927
    • 928
    • 929
    • 930
    • 931
    • 932
    • 933
    • 934
    • 935
    • 936
    • 937
    • 938
    • 939
    • 940
    • 941
    • 942
    • 943
    • 944
    • 945
    • 946
    • 947
    • 948
    • 949
    • 950
    • 951
    • 952
    • 953
    • 954
    • 955
    • 956
    • 957
    • 958
    • 959
    • 960
    • 961
    • 962
    • 963
    • 964
    • 965
    • 966
    • 967
    • 968
    • 969
    • 970
    • 971
    • 972
    • 973
    • 974
    • 975
    • 976
    • 977
    • 978
    • 979
    • 980
    • 981
    • 982
    • 983
    • 984
    • 985
    • 986
    • 987
    • 988
    • 989
    • 990
    • 991
    • 992
    • 993
    • 994
    • 995
    • 996
    • 997
    • 998
    • 999
    • 1000
    • 1001
    • 1002
    • 1003
    • 1004
    • 1005
    • 1006
    • 1007
    • 1008
    • 1009
    • 1010
    • 1011
    • 1012
    • 1013
    • 1014
    • 1015
    • 1016
    • 1017
    • 1018
    • 1019
    • 1020
    • 1021
    • 1022
    • 1023
    • 1024
    • 1025
    • 1026
    • 1027
    • 1028
    • 1029
    • 1030
    • 1031
    • 1032
    • 1033
    • 1034
    • 1035
    • 1036
    • 1037
    • 1038
    • 1039
    • 1040
    • 1041
    • 1042
    • 1043
    • 1044
    • 1045
    • 1046
    • 1047
    • 1048
    • 1049
    • 1050
    • 1051
    • 1052
    • 1053
    • 1054
    • 1055
    • 1056
    • 1057
    • 1058
    • 1059
    • 1060
    • 1061
    • 1062
    • 1063
    • 1064
    • 1065
    • 1066
    • 1067
    • 1068
    • 1069
    • 1070
    • 1071
    • 1072
    • 1073
    • 1074
    • 1075
    • 1076
    • 1077
    • 1078
    • 1079
    • 1080
    • 1081
    • 1082
    • 1083
    • 1084
    • 1085
    • 1086
    • 1087
    • 1088
    • 1089
    • 1090
    • 1091
    • 1092
    • 1093
    • 1094
    • 1095
    • 1096
    • 1097
    • 1098
    • 1099
    • 1100
    • 1101
    • 1102
    • 1103
    • 1104
    • 1105
    • 1106
    • 1107
    • 1108
    • 1109
    • 1110
    • 1111
    • 1112
    • 1113
    • 1114
    • 1115
    • 1116
    • 1117
    • 1118
    • 1119
    • 1120
    • 1121
    • 1122
    • 1123
    • 1124
    • 1125
    • 1126
    • 1127
    • 1128
    • 1129
    • 1130
    • 1131
    • 1132
    • 1133
    • 1134
    • 1135
    • 1136
    • 1137
    • 1138
    • 1139
    • 1140
    • 1141
    • 1142
    • 1143
    • 1144
    • 1145
    • 1146
    • 1147
    • 1148
    • 1149
    • 1150
    • 1151
    • 1152
    • 1153
    • 1154
    • 1155
    • 1156
    • 1157
    • 1158
    • 1159
    • 1160
    • 1161
    • 1162
    • 1163
    • 1164
    • 1165
    • 1166
    • 1167
    • 1168
    • 1169
    • 1170
    • 1171
    • 1172
    • 1173
    • 1174
    • 1175
    • 1176
    • 1177
    • 1178
    • 1179
    • 1180
    • 1181
    • 1182
    • 1183
    • 1184
    • 1185
    • 1186
    • 1187
    • 1188
    • 1189
    • 1190
    • 1191
    • 1192
    • 1193
    • 1194
    • 1195
    • 1196
    • 1197
    • 1198
    • 1199
    • 1200
    • 1201
    • 1202
    • 1203
    • 1204
    • 1205
    • 1206
    • 1207
    • 1208
    • 1209
    • 1210
    • 1211
    • 1212
    • 1213
    • 1214
    • 1215
    • 1216
    • 1217
    • 1218
    • 1219
    • 1220
    • 1221
    • 1222
    • 1223
    • 1224
    • 1225
    • 1226
    • 1227
    • 1228
    • 1229
    • 1230
    • 1231
    • 1232
    • 1233
    • 1234
    • 1235
    • 1236
    • 1237
    • 1238
    • 1239
    • 1240
    • 1241
    • 1242
    • 1243
    • 1244
    • 1245
    • 1246
    • 1247
    • 1248
    • 1249
    • 1250
    • 1251
    • 1252
    • 1253
    • 1254
    • 1255
    • 1256
    • 1257
    • 1258
    • 1259
    • 1260
    • 1261
    • 1262
    • 1263
    • 1264
    • 1265
    • 1266
    • 1267
    • 1268
    • 1269
    • 1270
    • 1271
    • 1272
    • 1273
    • 1274
    • 1275
    • 1276
    • 1277
    • 1278
    • 1279
    • 1280
    • 1281
    • 1282
    • 1283
    • 1284
    • 1285
    • 1286
    • 1287
    • 1288
    • 1289
    • 1290
    • 1291
    • 1292
    • 1293
    • 1294
    • 1295
    • 1296
    • 1297
    • 1298
    • 1299
    • 1300
    • 1301
    • 1302
    • 1303
    • 1304
    • 1305
    • 1306
    • 1307
    • 1308
    • 1309
    • 1310
    • 1311
    • 1312
    • 1313
    • 1314
    • 1315
    • 1316
    • 1317
    • 1318
    • 1319
    • 1320
    • 1321
    • 1322
    • 1323
    • 1324
    • 1325
    • 1326
    • 1327
    • 1328
    • 1329
    • 1330
    • 1331
    • 1332
    • 1333
    • 1334
    • 1335
    • 1336
    • 1337
    • 1338
    • 1339
    • 1340
    • 1341
    • 1342
    • 1343
    • 1344
    • 1345
    • 1346
    • 1347
    • 1348
    • 1349
    • 1350
    • 1351
    • 1352
    • 1353
    • 1354
    • 1355
    • 1356
    • 1357
    • 1358
    • 1359
    • 1360
    • 1361
    • 1362
    • 1363
    • 1364
    • 1365
    • 1366
    • 1367
    • 1368
    • 1369
    • 1370
    • 1371
    • 1372
    • 1373
    • 1374
    • 1375
    • 1376
    • 1377
    • 1378
    • 1379
    • 1380
    • 1381
    • 1382
    • 1383
    • 1384
    • 1385
    • 1386
    • 1387
    • 1388
    • 1389
    • 1390
    • 1391
    • 1392
    • 1393
    • 1394
    • 1395
    • 1396
    • 1397
    • 1398
    • 1399
    • 1400
    • 1401
    • 1402
    • 1403
    • 1404
    • 1405
    • 1406
    • 1407
    • 1408
    • 1409
    • 1410
    • 1411
    • 1412
    • 1413
    • 1414
    • 1415
    • 1416
    • 1417
    • 1418
    • 1419
    • 1420
    • 1421
    • 1422
    • 1423
    • 1424
    • 1425
    • 1426
    • 1427
    • 1428
    • 1429
    • 1430
    • 1431
    • 1432
    • 1433
    • 1434
    • 1435
    • 1436
    • 1437
    • 1438
    • 1439
    • 1440
    • 1441
    • 1442
    • 1443
    • 1444
    • 1445
    • 1446
    • 1447
    • 1448
    • 1449
    • 1450
    • 1451
    • 1452
    • 1453
    • 1454
    • 1455
    • 1456
    • 1457
    • 1458
    • 1459
    • 1460
    • 1461
    • 1462
    • 1463
    • 1464
    • 1465
    • 1466
    • 1467
    • 1468
    • 1469
    • 1470
    • 1471
    • 1472
    • 1473
    • 1474
    • 1475
    • 1476
    • 1477
    • 1478
    • 1479
    • 1480
    • 1481
    • 1482
    • 1483
    • 1484
    • 1485
    • 1486
    • 1487
    • 1488
    • 1489
    • 1490
    • 1491
    • 1492
    • 1493
    • 1494
    • 1495
    • 1496
    • 1497
    • 1498
    • 1499
    • 1500
    • 1501
    • 1502
    • 1503
    • 1504
    • 1505
    • 1506
    • 1507
    • 1508
    • 1509
    • 1510
    • 1511
    • 1512
    • 1513
    • 1514
    • 1515
    • 1516
    • 1517
    • 1518
    • 1519
    • 1520
    • 1521
    • 1522
    • 1523
    • 1524
    • 1525
    • 1526
    • 1527
    • 1528
    • 1529
    • 1530
    • 1531
    • 1532
    • 1533
    • 1534
    • 1535
    • 1536
    • 1537
    • 1538
    • 1539
    • 1540
    • 1541
    • 1542
    • 1543
    • 1544
    • 1545
    • 1546
    • 1547
    • 1548
    • 1549
    • 1550
    • 1551
    • 1552
    • 1553
    • 1554
    • 1555
    • 1556
    • 1557
    • 1558
    • 1559
    • 1560
    • 1561
    • 1562
    • 1563
    • 1564
    • 1565
    • 1566
    • 1567
    • 1568
    • 1569
    • 1570
    • 1571
    • 1572
    • 1573
    • 1574
    • 1575
    • 1576
    • 1577
    • 1578
    • 1579
    • 1580
    • 1581
    • 1582
    • 1583
    • 1584
    • 1585
    • 1586
    • 1587
    • 1588
    • 1589
    • 1590
    • 1591
    • 1592
    • 1593
    • 1594
    • 1595
    • 1596
    • 1597
    • 1598
    • 1599
    • 1600
    • 1601
    • 1602
    • 1603
    • 1604
    • 1605
    • 1606
    • 1607
    • 1608
    • 1609
    • 1610
    • 1611
    • 1612
    • 1613
    • 1614
    • 1615
    • 1616
    • 1617
    • 1618
    • 1619
    • 1620
    • 1621
    • 1622
    • 1623
    • 1624
    • 1625
    • 1626
    • 1627
    • 1628
    • 1629
    • 1630
    • 1631
    • 1632
    • 1633
    • 1634
    • 1635
    • 1636
    • 1637
    • 1638
    • 1639
    • 1640
    • 1641
    • 1642
    • 1643
    • 1644
    • 1645
    • 1646
    • 1647
    • 1648
    • 1649
    • 1650
    • 1651
    • 1652
    • 1653
    • 1654
    • 1655
    • 1656
    • 1657
    • 1658
    • 1659
    • 1660
    • 1661
    • 1662
    • 1663
    • 1664
    • 1665
    • 1666
    • 1667
    • 1668
    • 1669
    • 1670
    • 1671
    • 1672
    • 1673
    • 1674
    • 1675
    • 1676
    • 1677
    • 1678
    • 1679
    • 1680
    • 1681
    • 1682
    • 1683
    • 1684
    • 1685
    • 1686
    • 1687
    • 1688
    • 1689
    • 1690
    • 1691
    • 1692
    • 1693
    • 1694
    • 1695
    • 1696
    • 1697
    • 1698
    • 1699
    • 1700
    • 1701
    • 1702
    • 1703
    • 1704
    • 1705
    • 1706
    • 1707
    • 1708
    • 1709
    • 1710
    • 1711
    • 1712
    • 1713
    • 1714
    • 1715
    • 1716
    • 1717
    • 1718
    • 1719
    • 1720
    • 1721
    • 1722
    • 1723
    • 1724
    • 1725
    • 1726
    • 1727
    • 1728
    • 1729
    • 1730
    • 1731
    • 1732
    • 1733
    • 1734
    • 1735
    • 1736
    • 1737
    • 1738
    • 1739
    • 1740
    • 1741
    • 1742
    • 1743
    • 1744
    • 1745
    • 1746
    • 1747
    • 1748
    • 1749
    • 1750
    • 1751
    • 1752
    • 1753
    • 1754
    • 1755
    • 1756
    • 1757
    • 1758
    • 1759
    • 1760
    • 1761
    • 1762
    • 1763
    • 1764
    • 1765
    • 1766
    • 1767
    • 1768
    • 1769
    • 1770
    • 1771
    • 1772
    • 1773
    • 1774
    • 1775
    • 1776
    • 1777
    • 1778
    • 1779
    • 1780
    • 1781
    • 1782
    • 1783
    • 1784
    • 1785
    • 1786
    • 1787
    • 1788
    • 1789
    • 1790
    • 1791
    • 1792
    • 1793
    • 1794
    • 1795
    • 1796
    • 1797
    • 1798
    • 1799
    • 1800
    • 1801
    • 1802
    • 1803
    • 1804
    • 1805
    • 1806
    • 1807
    • 1808
    • 1809
    • 1810
    • 1811
    • 1812
    • 1813
    • 1814
    • 1815
    • 1816
    • 1817
    • 1818
    • 1819
    • 1820
    • 1821
    • 1822
    • 1823
    • 1824
    • 1825
    • 1826
    • 1827
    • 1828
    • 1829
    • 1830
    • 1831
    • 1832
    • 1833
    • 1834
    • 1835
    • 1836
    • 1837
    • 1838
    • 1839
    • 1840
    • 1841
    • 1842
    • 1843
    • 1844
    • 1845
    • 1846
    • 1847
    • 1848
    • 1849
    • 1850
    • 1851
    • 1852
    • 1853
    • 1854
    • 1855
    • 1856
    • 1857
    • 1858
    • 1859
    • 1860
    • 1861
    • 1862
    • 1863
    • 1864
    • 1865
    • 1866
    • 1867
    • 1868
    • 1869
    • 1870
    • 1871
    • 1872
    • 1873
    • 1874
    • 1875
    • 1876
    • 1877
    • 1878
    • 1879
    • 1880
    • 1881
    • 1882
    • 1883
    • 1884
    • 1885
    • 1886
    • 1887
    • 1888
    • 1889
    • 1890
    • 1891
    • 1892
    • 1893
    • 1894
    • 1895
    • 1896
    • 1897
    • 1898
    • 1899
    • 1900
    • 1901
    • 1902
    • 1903
    • 1904
    • 1905
    • 1906
    • 1907
    • 1908
    • 1909
    • 1910
    • 1911
    • 1912
    • 1913
    • 1914
    • 1915
    • 1916
    • 1917
    • 1918
    • 1919
    • 1920
    • 1921
    • 1922
    • 1923
    • 1924
    • 1925
    • 1926
    • 1927
    • 1928
    • 1929
    • 1930
    • 1931
    • 1932
    • 1933
    • 1934
    • 1935
    • 1936
    • 1937
    • 1938
    • 1939
    • 1940
    • 1941
    • 1942
    • 1943
    • 1944
    • 1945
    • 1946
    • 1947
    • 1948
    • 1949
    • 1950
    • 1951
    • 1952
    • 1953
    • 1954
    • 1955
    • 1956
    • 1957
    • 1958
    • 1959
    • 1960
    • 1961
    • 1962
    • 1963
    • 1964
    • 1965
    • 1966
    • 1967
    • 1968
    • 1969
    • 1970
    • 1971
    • 1972
    • 1973
    • 1974
    • 1975
    • 1976
    • 1977
    • 1978
    • 1979
    • 1980
    • 1981
    • 1982
    • 1983
    • 1984
    • 1985
    • 1986
    • 1987
    • 1988
    • 1989
    • 1990
    • 1991
    • 1992
    • 1993
    • 1994
    • 1995
    • 1996
    • 1997
    • 1998
    • 1999
    • 2000
    • 2001
    • 2002
    • 2003
    • 2004
    • 2005
    • 2006
    • 2007
    • 2008
    • 2009
    • 2010
    • 2011
    • 2012
    • 2013
    • 2014
    • 2015
    • 2016
    • 2017
    • 2018
    • 2019
    • 2020
    • 2021
    • 2022
    • 2023
    • 2024
    • 2025
    • 2026
    • 2027
    • 2028
    • 2029
    • 2030
    • 2031
    • 2032
    • 2033
    • 2034
    • 2035
    • 2036
    • 2037
    • 2038
    • 2039
    • 2040
    • 2041
    • 2042
    • 2043
    • 2044
    • 2045
    • 2046
    • 2047
    • 2048
    • 2049
    • 2050
    • 2051
    • 2052
    • 2053
    • 2054
    • 2055
    • 2056
    • 2057
    • 2058
    • 2059
    • 2060
    • 2061
    • 2062
    • 2063
    • 2064
    • 2065
    • 2066
    • 2067
    • 2068
    • 2069
    • 2070
    • 2071
    • 2072
    • 2073
    • 2074
    • 2075
    • 2076
    • 2077
    • 2078
    • 2079
    • 2080
    • 2081
    • 2082
    • 2083
    • 2084
    • 2085
    • 2086
    • 2087
    • 2088
    • 2089
    • 2090
    • 2091
    • 2092
    • 2093
    • 2094
    • 2095
    • 2096
    • 2097
    • 2098
    • 2099
    • 2100
    • 2101
    • 2102
    • 2103
    • 2104
    • 2105
    • 2106
    • 2107
    • 2108
    • 2109
    • 2110
    • 2111
    • 2112
    • 2113
    • 2114
    • 2115
    • 2116
    • 2117
    • 2118
    • 2119
    • 2120
    • 2121
    • 2122
    • 2123
    • 2124
    • 2125
    • 2126
    • 2127
    • 2128
    • 2129
    • 2130
    • 2131
    • 2132
    • 2133
    • 2134
    • 2135
    • 2136
    • 2137
    • 2138
    • 2139
    • 2140
    • 2141
    • 2142
    • 2143
    • 2144
    • 2145
    • 2146
    • 2147
    • 2148
    • 2149
    • 2150
    • 2151
    • 2152
    • 2153
    • 2154
    • 2155
    • 2156
    • 2157
    • 2158
    • 2159
    • 2160
    • 2161
    • 2162
    • 2163
    • 2164
    • 2165
    • 2166
    • 2167
    • 2168
    • 2169
    • 2170
    • 2171
    • 2172
    • 2173
    • 2174
    • 2175
    • 2176
    • 2177
    • 2178
    • 2179
    • 2180
    • 2181
    • 2182
    • 2183
    • 2184
    • 2185
    • 2186
    • 2187
    • 2188
    • 2189
    • 2190
    • 2191
    • 2192
    • 2193
    • 2194
    • 2195
    • 2196
    • 2197
    • 2198
    • 2199
    • 2200
    • 2201
    • 2202
    • 2203
    • 2204
    • 2205
    • 2206
    • 2207
    • 2208
    • 2209
    • 2210
    • 2211
    • 2212
    • 2213
    • 2214
    • 2215
    • 2216
    • 2217
    • 2218
    • 2219
    • 2220
    • 2221
    • 2222
    • 2223
    • 2224
    • 2225
    • 2226
    • 2227
    • 2228
    • 2229
    • 2230
    • 2231
    • 2232
    • 2233
    • 2234
    • 2235
    • 2236
    • 2237
    • 2238
    • 2239
    • 2240
    • 2241
    • 2242
    • 2243
    • 2244
    • 2245
    • 2246
    • 2247
    • 2248
    • 2249
    • 2250
    • 2251
    • 2252
    • 2253
    • 2254
    • 2255
    • 2256
    • 2257
    • 2258
    • 2259
    • 2260
    • 2261
    • 2262
    • 2263
    • 2264
    • 2265
    • 2266
    • 2267
    • 2268
    • 2269
    • 2270
    • 2271
    • 2272
    • 2273
    • 2274
    • 2275
    • 2276
    • 2277
    • 2278
    • 2279
    • 2280
    • 2281
    • 2282
    • 2283
    • 2284
    • 2285
    • 2286
    • 2287
    • 2288
    • 2289
    • 2290
    • 2291
    • 2292
    • 2293
    • 2294
    • 2295
    • 2296
    • 2297
    • 2298
    • 2299
    • 2300
    • 2301
    • 2302
    • 2303
    • 2304
    • 2305
    • 2306
    • 2307
    • 2308
    • 2309
    • 2310
    • 2311
    • 2312
    • 2313
    • 2314
    • 2315
    • 2316
    • 2317
    • 2318
    • 2319
    • 2320
    • 2321
    • 2322
    • 2323
    • 2324
    • 2325
    • 2326
    • 2327
    • 2328
    • 2329
    • 2330
    • 2331
    • 2332
    • 2333
    • 2334
    • 2335
    • 2336
    • 2337
    • 2338
    • 2339
    • 2340
    • 2341
    • 2342
    • 2343
    • 2344
    • 2345
    • 2346
    • 2347
    • 2348
    • 2349
    • 2350
    • 2351
    • 2352
    • 2353
    • 2354
    • 2355
    • 2356
    • 2357
    • 2358
    • 2359
    • 2360
    • 2361
    • 2362
    • 2363
    • 2364
    • 2365
    • 2366
    • 2367
    • 2368
    • 2369
    • 2370
    • 2371
    • 2372
    • 2373
    • 2374
    • 2375
    • 2376
    • 2377
    • 2378
    • 2379
    • 2380
    • 2381
    • 2382
    • 2383
    • 2384
    • 2385
    • 2386
    • 2387
    • 2388
    • 2389
    • 2390
    • 2391
    • 2392
    • 2393
    • 2394
    • 2395
    • 2396
    • 2397
    • 2398
    • 2399
    • 2400
    • 2401
    • 2402
    • 2403
    • 2404
    • 2405
    • 2406
    • 2407
    • 2408
    • 2409
    • 2410
    • 2411
    • 2412
    • 2413
    • 2414
    • 2415
    • 2416
    • 2417
    • 2418
    • 2419
    • 2420
    • 2421
    • 2422
    • 2423
    • 2424
    • 2425
    • 2426
    • 2427
    • 2428
    • 2429
    • 2430
    • 2431
    • 2432
    • 2433
    • 2434
    • 2435
    • 2436
    • 2437
    • 2438
    • 2439
    • 2440
    • 2441
    • 2442
    • 2443
    • 2444
    • 2445
    • 2446
    • 2447
    • 2448
    • 2449
    • 2450
    • 2451
    • 2452
    • 2453
    • 2454
    • 2455
    • 2456
    • 2457
    • 2458
    • 2459
    • 2460
    • 2461
    • 2462
    • 2463
    • 2464
    • 2465
    • 2466
    • 2467
    • 2468
    • 2469
    • 2470
    • 2471
    • 2472
    • 2473
    • 2474
    • 2475
    • 2476
    • 2477
    • 2478
    • 2479
    • 2480
    • 2481
    • 2482
    • 2483
    • 2484
    • 2485
    • 2486
    • 2487
    • 2488
    • 2489
    • 2490
    • 2491
    • 2492
    • 2493
    • 2494
    • 2495
    • 2496
    • 2497
    • 2498
    • 2499
    • 2500
    • 2501
    • 2502
    • 2503
    • 2504
    • 2505
    • 2506
    • 2507
    • 2508
    • 2509
    • 2510
    • 2511
    • 2512
    • 2513
    • 2514
    • 2515
    • 2516
    • 2517
    • 2518
    • 2519
    • 2520
    • 2521
    • 2522
    • 2523
    • 2524
    • 2525
    • 2526
    • 2527
    • 2528
    • 2529
    • 2530
    • 2531
    • 2532
    • 2533
    • 2534
    • 2535
    • 2536
    • 2537
    • 2538
    • 2539
    • 2540
    • 2541
    • 2542
    • 2543
    • 2544
    • 2545
    • 2546
    • 2547
    • 2548
    • 2549
    • 2550
    • 2551
    • 2552
    • 2553
    • 2554
    • 2555
    • 2556
    • 2557
    • 2558
    • 2559
    • 2560
    • 2561
    • 2562
    • 2563
    • 2564
    • 2565
    • 2566
    • 2567
    • 2568
    • 2569
    • 2570
    • 2571
    • 2572
    • 2573
    • 2574
    • 2575
    • 2576
    • 2577
    • 2578
    • 2579
    • 2580
    • 2581
    • 2582
    • 2583
    • 2584
    • 2585
    • 2586
    • 2587
    • 2588
    • 2589
    • 2590
    • 2591
    • 2592
    • 2593
    • 2594
    • 2595
    • 2596
    • 2597
    • 2598
    • 2599
    • 2600
    • 2601
    • 2602
    • 2603
    • 2604
    • 2605
    • 2606
    • 2607
    • 2608
    • 2609
    • 2610
    • 2611
    • 2612
    • 2613
    • 2614
    • 2615
    • 2616
    • 2617
    • 2618
    • 2619
    • 2620
    • 2621
    • 2622
    • 2623
    • 2624
    • 2625
    • 2626
    • 2627
    • 2628
    • 2629
    • 2630
    • 2631
    • 2632
    • 2633
    • 2634
    • 2635
    • 2636
    • 2637
    • 2638
    • 2639
    • 2640
    • 2641
    • 2642
    • 2643
    • 2644
    • 2645
    • 2646
    • 2647
    • 2648
    • 2649
    • 2650
    • 2651
    • 2652
    • 2653
    • 2654
    • 2655
    • 2656
    • 2657
    • 2658
    • 2659
    • 2660
    • 2661
    • 2662
    • 2663
    • 2664
    • 2665
    • 2666
    • 2667
    • 2668
    • 2669
    • 2670
    • 2671
    • 2672
    • 2673
    • 2674
    • 2675
    • 2676
    • 2677
    • 2678
    • 2679
    • 2680
    • 2681
    • 2682
    • 2683
    • 2684
    • 2685
    • 2686
    • 2687
    • 2688
    • 2689
    • 2690
    • 2691
    • 2692
    • 2693
    • 2694
    • 2695
    • 2696
    • 2697
    • 2698
    • 2699
    • 2700
    • 2701
    • 2702
    • 2703
    • 2704
    • 2705
    • 2706
    • 2707
    • 2708
    • 2709
    • 2710
    • 2711
    • 2712
    • 2713
    • 2714
    • 2715
    • 2716
    • 2717
    • 2718
    • 2719
    • 2720
    • 2721
    • 2722
    • 2723
    • 2724
    • 2725
    • 2726
    • 2727
    • 2728
    • 2729
    • 2730
    • 2731
    • 2732
    • 2733
    • 2734
    • 2735
    • 2736
    • 2737
    • 2738
    • 2739
    • 2740
    • 2741
    • 2742
    • 2743
    • 2744
    • 2745
    • 2746
    • 2747
    • 2748
    • 2749
    • 2750
    • 2751
    • 2752
    • 2753
    • 2754
    • 2755
    • 2756
    • 2757
    • 2758
    • 2759
    • 2760
    • 2761
    • 2762
    • 2763
    • 2764
    • 2765
    • 2766
    • 2767
    • 2768
    • 2769
    • 2770
    • 2771
    • 2772
    • 2773
    • 2774
    • 2775
    • 2776
    • 2777
    • 2778
    • 2779
    • 2780
    • 2781
    • 2782
    • 2783
    • 2784
    • 2785
    • 2786
    • 2787
    • 2788
    • 2789
    • 2790
    • 2791
    • 2792
    • 2793
    • 2794
    • 2795
    • 2796
    • 2797
    • 2798
    • 2799
    • 2800
    • 2801
    • 2802
    • 2803
    • 2804
    • 2805
    • 2806
    • 2807
    • 2808
    • 2809
    • 2810
    • 2811
    • 2812
    • 2813
    • 2814
    • 2815
    • 2816
    • 2817
    • 2818
    • 2819
    • 2820
    • 2821
    • 2822
    • 2823
    • 2824
    • 2825
    • 2826
    • 2827
    • 2828
    • 2829
    • 2830
    • 2831
    • 2832
    • 2833
    • 2834
    • 2835
    • 2836
    • 2837
    • 2838
    • 2839
    • 2840
    • 2841
    • 2842
    • 2843
    • 2844
    • 2845
    • 2846
    • 2847
    • 2848
    • 2849
    • 2850
    • 2851
    • 2852
    • 2853
    • 2854
    • 2855
    • 2856
    • 2857
    • 2858
    • 2859
    • 2860
    • 2861
    • 2862
    • 2863
    • 2864
    • 2865
    • 2866
    • 2867
    • 2868
    • 2869
    • 2870
    • 2871
    • 2872
    • 2873
    • 2874
    • 2875
    • 2876
    • 2877
    • 2878
    • 2879
    • 2880
    • 2881
    • 2882
    • 2883
    • 2884
    • 2885
    • 2886
    • 2887
    • 2888
    • 2889
    • 2890
    • 2891
    • 2892
    • 2893
    • 2894
    • 2895
    • 2896
    • 2897
    • 2898
    • 2899
    • 2900
    • 2901
    • 2902
    • 2903
    • 2904
    • 2905
    • 2906
    • 2907
    • 2908
    • 2909
    • 2910
    • 2911
    • 2912
    • 2913
    • 2914
    • 2915
    • 2916
    • 2917
    • 2918
    • 2919
    • 2920
    • 2921
    • 2922
    • 2923
    • 2924
    • 2925
    • 2926
    • 2927
    • 2928
    • 2929
    • 2930
    • 2931
    • 2932
    • 2933
    • 2934
    • 2935
    • 2936
    • 2937
    • 2938
    • 2939
    • 2940
    • 2941
    • 2942
    • 2943
    • 2944
    • 2945
    • 2946
    • 2947
    • 2948
    • 2949
    • 2950
    • 2951
    • 2952
    • 2953
    • 2954
    • 2955
    • 2956
    • 2957
    • 2958
    • 2959
    • 2960
    • 2961
    • 2962
    • 2963
    • 2964
    • 2965
    • 2966
    • 2967
    • 2968
    • 2969
    • 2970
    • 2971
    • 2972
    • 2973
    • 2974
    • 2975
    • 2976
    • 2977
    • 2978
    • 2979
    • 2980
    • 2981
    • 2982
    • 2983
    • 2984
    • 2985
    • 2986
    • 2987
    • 2988
    • 2989
    • 2990
    • 2991
    • 2992
    • 2993
    • 2994
    • 2995
    • 2996
    • 2997
    • 2998
    • 2999
    • 3000
    • 3001
    • 3002
    • 3003
    • 3004
    • 3005
    • 3006
    • 3007
    • 3008
    • 3009
    • 3010
    • 3011
    • 3012
    • 3013
    • 3014
    • 3015
    • 3016
    • 3017
    • 3018
    • 3019
    • 3020
    • 3021
    • 3022
    • 3023
    • 3024
    • 3025
    • 3026
    • 3027
    • 3028
    • 3029
    • 3030
    • 3031
    • 3032
    • 3033
    • 3034
    • 3035
    • 3036
    • 3037
    • 3038
    • 3039
    • 3040
    • 3041
    • 3042
    • 3043
    • 3044
    • 3045
    • 3046
    • 3047
    • 3048
    • 3049
    • 3050
    • 3051
    • 3052
    • 3053
    • 3054
    • 3055
    • 3056
    • 3057
    • 3058
    • 3059
    • 3060
    • 3061
    • 3062
    • 3063
    • 3064
    • 3065
    • 3066
    • 3067
    • 3068
    • 3069
    • 3070
    • 3071
    • 3072
    • 3073
    • 3074
    • 3075
    • 3076
    • 3077
    • 3078
    • 3079
    • 3080
    • 3081
    • 3082
    • 3083
    • 3084
    • 3085
    • 3086
    • 3087
    • 3088
    • 3089
    • 3090
    • 3091
    • 3092
    • 3093
    • 3094
    • 3095
    • 3096
    • 3097
    • 3098
    • 3099
    • 3100
    • 3101
    • 3102
    • 3103
    • 3104
    • 3105
    • 3106
    • 3107
    • 3108
    • 3109
    • 3110
    • 3111
    • 3112
    • 3113
    • 3114
    • 3115
    • 3116
    • 3117
    • 3118
    • 3119
    • 3120
    • 3121
    • 3122
    • 3123
    • 3124
    • 3125
    • 3126
    • 3127
    • 3128
    • 3129
    • 3130
    • 3131
    • 3132
    • 3133
    • 3134
    • 3135
    • 3136
    • 3137
    • 3138
    • 3139
    • 3140
    • 3141
    • 3142
    • 3143
    • 3144
    • 3145
    • 3146
    • 3147
    • 3148
    • 3149
    • 3150
    • 3151
    • 3152
    • 3153
    • 3154
    • 3155
    • 3156
    • 3157
    • 3158
    • 3159
    • 3160
    • 3161
    • 3162
    • 3163
    • 3164
    • 3165
    • 3166
    • 3167
    • 3168
    • 3169
    • 3170
    • 3171
    • 3172
    • 3173
    • 3174
    • 3175
    • 3176
    • 3177
    • 3178
    • 3179
    • 3180
    • 3181
    • 3182
    • 3183
    • 3184
    • 3185
    • 3186
    • 3187
    • 3188
    • 3189
    • 3190
    • 3191
    • 3192
    • 3193
    • 3194
    • 3195
    • 3196
    • 3197
    • 3198
    • 3199
    • 3200
    • 3201
    • 3202
    • 3203
    • 3204
    • 3205
    • 3206
    • 3207
    • 3208
    • 3209
    • 3210
    • 3211
    • 3212
    • 3213
    • 3214
    • 3215
    • 3216
    • 3217
    • 3218
    • 3219
    • 3220
    • 3221
    • 3222
    • 3223
    • 3224
    • 3225
    • 3226
    • 3227
    • 3228
    • 3229
    • 3230
    • 3231
    • 3232
    • 3233
    • 3234
    • 3235
    • 3236
    • 3237
    • 3238
    • 3239
    • 3240
    • 3241
    • 3242
    • 3243
    • 3244
    • 3245
    • 3246
    • 3247
    • 3248
    • 3249
    • 3250
    • 3251
    • 3252
    • 3253
    • 3254
    • 3255
    • 3256
    • 3257
    • 3258
    • 3259
    • 3260
    • 3261
    • 3262
    • 3263
    • 3264
    • 3265
    • 3266
    • 3267
    • 3268
    • 3269
    • 3270
    • 3271
    • 3272
    • 3273
    • 3274
    • 3275
    • 3276
    • 3277
    • 3278
    • 3279
    • 3280
    • 3281
    • 3282
    • 3283
    • 3284
    • 3285
    • 3286
    • 3287
    • 3288
    • 3289
    • 3290
    • 3291
    • 3292
    • 3293
    • 3294
    • 3295
    • 3296
    • 3297
    • 3298
    • 3299
    • 3300
    • 3301
    • 3302
    • 3303
    • 3304
    • 3305
    • 3306
    • 3307
    • 3308
    • 3309
    • 3310
    • 3311
    • 3312
    • 3313
    • 3314
    • 3315
    • 3316
    • 3317
    • 3318
    • 3319
    • 3320
    • 3321
    • 3322
    • 3323
    • 3324
    • 3325
    • 3326
    • 3327
    • 3328
    • 3329
    • 3330
    • 3331
    • 3332
    • 3333
    • 3334
    • 3335
    • 3336
    • 3337
    • 3338
    • 3339
    • 3340
    • 3341
    • 3342
    • 3343
    • 3344
    • 3345
    • 3346
    • 3347
    • 3348
    • 3349
    • 3350
    • 3351
    • 3352
    • 3353
    • 3354
    • 3355
    • 3356
    • 3357
    • 3358
    • 3359
    • 3360
    • 3361
    • 3362
    • 3363
    • 3364
    • 3365
    • 3366
    • 3367
    • 3368
    • 3369
    • 3370
    • 3371
    • 3372
    • 3373
    • 3374
    • 3375
    • 3376
    • 3377
    • 3378
    • 3379
    • 3380
    • 3381
    • 3382
    • 3383
    • 3384
    • 3385
    • 3386
    • 3387
    • 3388
    • 3389
    • 3390
    • 3391
    • 3392
    • 3393
    • 3394
    • 3395
    • 3396
    • 3397
    • 3398
    • 3399
    • 3400
    • 3401
    • 3402
    • 3403
    • 3404
    • 3405
    • 3406
    • 3407
    • 3408
    • 3409
    • 3410
    • 3411
    • 3412
    • 3413
    • 3414
    • 3415
    • 3416
    • 3417
    • 3418
    • 3419
    • 3420
    • 3421
    • 3422
    • 3423
    • 3424
    • 3425
    • 3426
    • 3427
    • 3428
    • 3429
    • 3430
    • 3431
    • 3432
    • 3433
    • 3434
    • 3435
    • 3436
    • 3437
    • 3438
    • 3439
    • 3440
    • 3441
    • 3442
    • 3443
    • 3444
    • 3445
    • 3446
    • 3447
    • 3448
    • 3449
    • 3450
    • 3451
    • 3452
    • 3453
    • 3454
    • 3455
    • 3456
    • 3457
    • 3458
    • 3459
    • 3460
    • 3461
    • 3462
    • 3463
    • 3464
    • 3465
    • 3466
    • 3467
    • 3468
    • 3469
    • 3470
    • 3471
    • 3472
    • 3473
    • 3474
    • 3475
    • 3476
    • 3477
    • 3478
    • 3479
    • 3480
    • 3481
    • 3482
    • 3483
    • 3484
    • 3485
    • 3486
    • 3487
    • 3488
    • 3489
    • 3490
    • 3491
    • 3492
    • 3493
    • 3494
    • 3495
    • 3496
    • 3497
    • 3498
    • 3499
    • 3500
    • 3501
    • 3502
    • 3503
    • 3504
    • 3505
    • 3506
    • 3507
    • 3508
    • 3509
    • 3510
    • 3511
    • 3512
    • 3513
    • 3514
    • 3515
    • 3516
    • 3517
    • 3518
    • 3519
    • 3520
    • 3521
    • 3522
    • 3523
    • 3524
    • 3525
    • 3526
    • 3527
    • 3528
    • 3529
    • 3530
    • 3531
    • 3532
    • 3533
    • 3534
    • 3535
    • 3536
    • 3537
    • 3538
    • 3539
    • 3540
    • 3541
    • 3542
    • 3543
    • 3544
    • 3545
    • 3546
    • 3547
    • 3548
    • 3549
    • 3550
    • 3551
    • 3552
    • 3553
    • 3554
    • 3555
    • 3556
    • 3557
    • 3558
    • 3559
    • 3560
    • 3561
    • 3562
    • 3563
    • 3564
    • 3565
    • 3566
    • 3567
    • 3568
    • 3569
    • 3570
    • 3571
    • 3572
    • 3573
    • 3574
    • 3575
    • 3576
    • 3577
    • 3578
    • 3579
    • 3580
    • 3581
    • 3582
    • 3583
    • 3584
    • 3585
    • 3586
    • 3587
    • 3588
    • 3589
    • 3590
    • 3591
    • 3592
    • 3593
    • 3594
    • 3595
    • 3596
    • 3597
    • 3598
    • 3599
    • 3600
    • 3601
    • 3602
    • 3603
    • 3604
    • 3605
    • 3606
    • 3607
    • 3608
    • 3609
    • 3610
    • 3611
    • 3612
    • 3613
    • 3614
    • 3615
    • 3616
    • 3617
    • 3618
    • 3619
    • 3620
    • 3621
    • 3622
    • 3623
    • 3624
    • 3625
    • 3626
    • 3627
    • 3628
    • 3629
    • 3630
    • 3631
    • 3632
    • 3633
    • 3634
    • 3635
    • 3636
    • 3637
    • 3638
    • 3639
    • 3640
    • 3641
    • 3642
    • 3643
    • 3644
    • 3645
    • 3646
    • 3647
    • 3648
    • 3649
    • 3650
    • 3651
    • 3652
    • 3653
    • 3654
    • 3655
    • 3656
    • 3657
    • 3658
    • 3659
    • 3660
    • 3661
    • 3662
    • 3663
    • 3664
    • 3665
    • 3666
    • 3667
    • 3668
    • 3669
    • 3670
    • 3671
    • 3672
    • 3673
    • 3674
    • 3675
    • 3676
    • 3677
    • 3678
    • 3679
    • 3680
    • 3681
    • 3682
    • 3683
    • 3684
    • 3685
    • 3686
    • 3687
    • 3688
    • 3689
    • 3690
    • 3691
    • 3692
    • 3693
    • 3694
    • 3695
    • 3696
    • 3697
    • 3698
    • 3699
    • 3700
    • 3701
    • 3702
    • 3703
    • 3704
    • 3705
    • 3706
    • 3707
    • 3708
    • 3709
    • 3710
    • 3711
    • 3712
    • 3713
    • 3714
    • 3715
    • 3716
    • 3717
    • 3718
    • 3719
    • 3720
    • 3721
    • 3722
    • 3723
    • 3724
    • 3725
    • 3726
    • 3727
    • 3728
    • 3729
    • 3730
    • 3731
    • 3732
    • 3733
    • 3734
    • 3735
    • 3736
    • 3737
    • 3738
    • 3739
    • 3740
    • 3741
    • 3742
    • 3743
    • 3744
    • 3745
    • 3746
    • 3747
    • 3748
    • 3749
    • 3750
    • 3751
    • 3752
    • 3753
    • 3754
    • 3755
    • 3756
    • 3757
    • 3758
    • 3759
    • 3760
    • 3761
    • 3762
    • 3763
    • 3764
    • 3765
    • 3766
    • 3767
    • 3768
    • 3769
    • 3770
    • 3771
    • 3772
    • 3773
    • 3774
    • 3775
    • 3776
    • 3777
    • 3778
    • 3779
    • 3780
    • 3781
    • 3782
    • 3783
    • 3784
    • 3785
    • 3786
    • 3787
    • 3788
    • 3789
    • 3790
    • 3791
    • 3792
    • 3793
    • 3794
    • 3795
    • 3796
    • 3797
    • 3798
    • 3799
    • 3800
    • 3801
    • 3802
    • 3803
    • 3804
    • 3805
    • 3806
    • 3807
    • 3808
    • 3809
    • 3810
    • 3811
    • 3812
    • 3813
    • 3814
    • 3815
    • 3816
    • 3817
    • 3818
    • 3819
    • 3820
    • 3821
    • 3822
    • 3823
    • 3824
    • 3825
    • 3826
    • 3827
    • 3828
    • 3829
    • 3830
    • 3831
    • 3832
    • 3833
    • 3834
    • 3835
    • 3836
    • 3837
    • 3838
    • 3839
    • 3840
    • 3841
    • 3842
    • 3843
    • 3844
    • 3845
    • 3846
    • 3847
    • 3848
    • 3849
    • 3850
    • 3851
    • 3852
    • 3853
    • 3854
    • 3855
    • 3856
    • 3857
    • 3858
    • 3859
    • 3860
    • 3861
    • 3862
    • 3863
    • 3864
    • 3865
    • 3866
    • 3867
    • 3868
    • 3869
    • 3870
    • 3871
    • 3872
    • 3873
    • 3874
    • 3875
    • 3876
    • 3877
    • 3878
    • 3879
    • 3880
    • 3881
    • 3882
    • 3883
    • 3884
    • 3885
    • 3886
    • 3887
    • 3888
    • 3889
    • 3890
    • 3891
    • 3892
    • 3893
    • 3894
    • 3895
    • 3896
    • 3897
    • 3898
    • 3899
    • 3900
    • 3901
    • 3902
    • 3903
    • 3904
    • 3905
    • 3906
    • 3907
    • 3908
    • 3909
    • 3910
    • 3911
    • 3912
    • 3913
    • 3914
    • 3915
    • 3916
    • 3917
    • 3918
    • 3919
    • 3920
    • 3921
    • 3922
    • 3923
    • 3924
    • 3925
    • 3926
    • 3927
    • 3928
    • 3929
    • 3930
    • 3931
    • 3932
    • 3933
    • 3934
    • 3935
    • 3936
    • 3937
    • 3938
    • 3939
    • 3940
    • 3941
    • 3942
    • 3943
    • 3944
    • 3945
    • 3946
    • 3947
    • 3948
    • 3949
    • 3950
    • 3951
    • 3952
    • 3953
    • 3954
    • 3955
    • 3956
    • 3957
    • 3958
    • 3959
    • 3960
    • 3961
    • 3962
    • 3963
    • 3964
    • 3965
    • 3966
    • 3967
    • 3968
    • 3969
    • 3970
    • 3971
    • 3972
    • 3973
    • 3974
    • 3975
    • 3976
    • 3977
    • 3978
    • 3979
    • 3980
    • 3981
    • 3982
    • 3983
    • 3984
    • 3985
    • 3986
    • 3987
    • 3988
    • 3989
    • 3990
    • 3991
    • 3992
    • 3993
    • 3994
    • 3995
    • 3996
    • 3997
    • 3998
    • 3999
    • 4000
    • 4001
    • 4002
    • 4003
    • 4004
    • 4005
    • 4006
    • 4007
    • 4008
    • 4009
    • 4010
    • 4011
    • 4012
    • 4013
    • 4014
    • 4015
    • 4016
    • 4017
    • 4018
    • 4019
    • 4020
    • 4021
    • 4022
    • 4023
    • 4024
    • 4025
    • 4026
    • 4027
    • 4028
    • 4029
    • 4030
    • 4031
    • 4032
    • 4033
    • 4034
    • 4035
    • 4036
    • 4037
    • 4038
    • 4039
    • 4040
    • 4041
    • 4042
    • 4043
    • 4044
    • 4045
    • 4046
    • 4047
    • 4048
    • 4049
    • 4050
    • 4051
    • 4052
    • 4053
    • 4054
    • 4055
    • 4056
    • 4057
    • 4058
    • 4059
    • 4060
    • 4061
    • 4062
    • 4063
    • 4064
    • 4065
    • 4066
    • 4067
    • 4068
    • 4069
    • 4070
    • 4071
    • 4072
    • 4073
    • 4074
    • 4075
    • 4076
    • 4077
    • 4078
    • 4079
    • 4080
    • 4081
    • 4082
    • 4083
    • 4084
    • 4085
    • 4086
    • 4087
    • 4088
    • 4089
    • 4090
    • 4091
    • 4092
    • 4093
    • 4094
    • 4095
    • 4096
    • 4097
    • 4098
    • 4099
    • 4100
    • 4101
    • 4102
    • 4103
    • 4104
    • 4105
    • 4106
    • 4107
    • 4108
    • 4109
    • 4110
    • 4111
    • 4112
    • 4113
    • 4114
    • 4115
    • 4116
    • 4117
    • 4118
    • 4119
    • 4120
    • 4121
    • 4122
    • 4123
    • 4124
    • 4125
    • 4126
    • 4127
    • 4128
    • 4129
    • 4130
    • 4131
    • 4132
    • 4133
    • 4134
    • 4135
    • 4136
    • 4137
    • 4138
    • 4139
    • 4140
    • 4141
    • 4142
    • 4143
    • 4144
    • 4145
    • 4146
    • 4147
    • 4148
    • 4149
    • 4150
    • 4151
    • 4152
    • 4153
    • 4154
    • 4155
    • 4156
    • 4157
    • 4158
    • 4159
    • 4160
    • 4161
    • 4162
    • 4163
    • 4164
    • 4165
    • 4166
    • 4167
    • 4168
    • 4169
    • 4170
    • 4171
    • 4172
    • 4173
    • 4174
    • 4175
    • 4176
    • 4177
    • 4178
    • 4179
    • 4180
    • 4181
    • 4182
    • 4183
    • 4184
    • 4185
    • 4186
    • 4187
    • 4188
    • 4189
    • 4190
    • 4191
    • 4192
    • 4193
    • 4194
    • 4195
    • 4196
    • 4197
    • 4198
    • 4199
    • 4200
    • 4201
    • 4202
    • 4203
    • 4204
    • 4205
    • 4206
    • 4207
    • 4208
    • 4209
    • 4210
    • 4211
    • 4212
    • 4213
    • 4214
    • 4215
    • 4216
    • 4217
    • 4218
    • 4219
    • 4220
    • 4221
    • 4222
    • 4223
    • 4224
    • 4225
    • 4226
    • 4227
    • 4228
    • 4229
    • 4230
    • 4231
    • 4232
    • 4233
    • 4234
    • 4235
    • 4236
    • 4237
    • 4238
    • 4239
    • 4240
    • 4241
    • 4242
    • 4243
    • 4244
    • 4245
    • 4246
    • 4247
    • 4248
    • 4249
    • 4250
    • 4251
    • 4252
    • 4253
    • 4254
    • 4255
    • 4256
    • 4257
    • 4258
    • 4259
    • 4260
    • 4261
    • 4262
    • 4263
    • 4264
    • 4265
    • 4266
    • 4267
    • 4268
    • 4269
    • 4270
    • 4271
    • 4272
    • 4273
    • 4274
    • 4275
    • 4276
    • 4277
    • 4278
    • 4279
    • 4280
    • 4281
    • 4282
    • 4283
    • 4284
    • 4285
    • 4286
    • 4287
    • 4288
    • 4289
    • 4290
    • 4291
    • 4292
    • 4293
    • 4294
    • 4295
    • 4296
    • 4297
    • 4298
    • 4299
    • 4300
    • 4301
    • 4302
    • 4303
    • 4304
    • 4305
    • 4306
    • 4307
    • 4308
    • 4309
    • 4310
    • 4311
    • 4312
    • 4313
    • 4314
    • 4315
    • 4316
    • 4317
    • 4318
    • 4319
    • 4320
    • 4321
    • 4322
    • 4323
    • 4324
    • 4325
    • 4326
    • 4327
    • 4328
    • 4329
    • 4330
    • 4331
    • 4332
    • 4333
    • 4334
    • 4335
    • 4336
    • 4337
    • 4338
    • 4339
    • 4340
    • 4341
    • 4342
    • 4343
    • 4344
    • 4345
    • 4346
    • 4347
    • 4348
    • 4349
    • 4350
    • 4351
    • 4352
    • 4353
    • 4354
    • 4355
    • 4356
    • 4357
    • 4358
    • 4359
    • 4360
    • 4361
    • 4362
    • 4363
    • 4364
    • 4365
    • 4366
    • 4367
    • 4368
    • 4369
    • 4370
    • 4371
    • 4372
    • 4373
    • 4374
    • 4375
    • 4376
    • 4377
    • 4378
    • 4379
    • 4380
    • 4381
    • 4382
    • 4383
    • 4384
    • 4385
    • 4386
    • 4387
    • 4388
    • 4389
    • 4390
    • 4391
    • 4392
    • 4393
    • 4394
    • 4395
    • 4396
    • 4397
    • 4398
    • 4399
    • 4400
    • 4401
    • 4402
    • 4403
    • 4404
    • 4405
    • 4406
    • 4407
    • 4408
    • 4409
    • 4410
    • 4411
    • 4412
    • 4413
    • 4414
    • 4415
    • 4416
    • 4417
    • 4418
    • 4419
    • 4420
    • 4421
    • 4422
    • 4423
    • 4424
    • 4425
    • 4426
    • 4427
    • 4428
    • 4429
    • 4430
    • 4431
    • 4432
    • 4433
    • 4434
    • 4435
    • 4436
    • 4437
    • 4438
    • 4439
    • 4440
    • 4441
    • 4442
    • 4443
    • 4444
    • 4445
    • 4446
    • 4447
    • 4448
    • 4449
    • 4450
    • 4451
    • 4452
    • 4453
    • 4454
    • 4455
    • 4456
    • 4457
    • 4458
    • 4459
    • 4460
    • 4461
    • 4462
    • 4463
    • 4464
    • 4465
    • 4466
    • 4467
    • 4468
    • 4469
    • 4470
    • 4471
    • 4472
    • 4473
    • 4474
    • 4475
    • 4476
    • 4477
    • 4478
    • 4479
    • 4480
    • 4481
    • 4482
    • 4483
    • 4484
    • 4485
    • 4486
    • 4487
    • 4488
    • 4489
    • 4490
    • 4491
    • 4492
    • 4493
    • 4494
    • 4495
    • 4496
    • 4497
    • 4498
    • 4499
    • 4500
    • 4501
    • 4502
    • 4503
    • 4504
    • 4505
    • 4506
    • 4507
    • 4508
    • 4509
    • 4510
    • 4511
    • 4512
    • 4513
    • 4514
    • 4515
    • 4516
    • 4517
    • 4518
    • 4519
    • 4520
    • 4521
    • 4522
    • 4523
    • 4524
    • 4525
    • 4526
    • 4527
    • 4528
    • 4529
    • 4530
    • 4531
    • 4532
    • 4533
    • 4534
    • 4535
    • 4536
    • 4537
    • 4538
    • 4539
    • 4540
    • 4541
    • 4542
    • 4543
    • 4544
    • 4545
    • 4546
    • 4547
    • 4548
    • 4549
    • 4550
    • 4551
    • 4552
    • 4553
    • 4554
    • 4555
    • 4556
    • 4557
    • 4558
    • 4559
    • 4560
    • 4561
    • 4562
    • 4563
    • 4564
    • 4565
    • 4566
    • 4567
    • 4568
    • 4569
    • 4570
    • 4571
    • 4572
    • 4573
    • 4574
    • 4575
    • 4576
    • 4577
    • 4578
    • 4579
    • 4580
    • 4581
    • 4582
    • 4583
    • 4584
    • 4585
    • 4586
    • 4587
    • 4588
    • 4589
    • 4590
    • 4591
    • 4592
    • 4593
    • 4594
    • 4595
    • 4596
    • 4597
    • 4598
    • 4599
    • 4600
    • 4601
    • 4602
    • 4603
    • 4604
    • 4605
    • 4606
    • 4607
    • 4608
    • 4609
    • 4610
    • 4611
    • 4612
    • 4613
    • 4614
    • 4615
    • 4616
    • 4617
    • 4618
    • 4619
    • 4620
    • 4621
    • 4622
    • 4623
    • 4624
    • 4625
    • 4626
    • 4627
    • 4628
    • 4629
    • 4630
    • 4631
    • 4632
    • 4633
    • 4634
    • 4635
    • 4636
    • 4637
    • 4638
    • 4639
    • 4640
    • 4641
    • 4642
    • 4643
    • 4644
    • 4645
    • 4646
    • 4647
    • 4648
    • 4649
    • 4650
    • 4651
    • 4652
    • 4653
    • 4654
    • 4655
    • 4656
    • 4657
    • 4658
    • 4659
    • 4660
    • 4661
    • 4662
    • 4663
    • 4664
    • 4665
    • 4666
    • 4667
    • 4668
    • 4669
    • 4670
    • 4671
    • 4672
    • 4673
    • 4674
    • 4675
    • 4676
    • 4677
    • 4678
    • 4679
    • 4680
    • 4681
    • 4682
    • 4683
    • 4684
    • 4685
    • 4686
    • 4687
    • 4688
    • 4689
    • 4690
    • 4691
    • 4692
    • 4693
    • 4694
    • 4695
    • 4696
    • 4697
    • 4698
    • 4699
    • 4700
    • 4701
    • 4702
    • 4703
    • 4704
    • 4705
    • 4706
    • 4707
    • 4708
    • 4709
    • 4710
    • 4711
    • 4712
    • 4713
    • 4714
    • 4715
    • 4716
    • 4717
    • 4718
    • 4719
    • 4720
    • 4721
    • 4722
    • 4723
    • 4724
    • 4725
    • 4726
    • 4727
    • 4728
    • 4729
    • 4730
    • 4731
    • 4732
    • 4733
    • 4734
    • 4735
    • 4736
    • 4737
    • 4738
    • 4739
    • 4740
    • 4741
    • 4742
    • 4743
    • 4744
    • 4745
    • 4746
    • 4747
    • 4748
    • 4749
    • 4750
    • 4751
    • 4752
    • 4753
    • 4754
    • 4755
    • 4756
    • 4757
    • 4758
    • 4759
    • 4760
    • 4761
    • 4762
    • 4763
    • 4764
    • 4765
    • 4766
    • 4767
    • 4768
    • 4769
    • 4770
    • 4771
    • 4772
    • 4773
    • 4774
    • 4775
    • 4776
    • 4777
    • 4778
    • 4779
    • 4780
    • 4781
    • 4782
    • 4783
    • 4784
    • 4785
    • 4786
    • 4787
    • 4788
    • 4789
    • 4790
    • 4791
    • 4792
    • 4793
    • 4794
    • 4795
    • 4796
    • 4797
    • 4798
    • 4799
    • 4800
    • 4801
    • 4802
    • 4803
    • 4804
    • 4805
    • 4806
    • 4807
    • 4808
    • 4809
    • 4810
    • 4811
    • 4812
    • 4813
    • 4814
    • 4815
    • 4816
    • 4817
    • 4818
    • 4819
    • 4820
    • 4821
    • 4822
    • 4823
    • 4824
    • 4825
    • 4826
    • 4827
    • 4828
    • 4829
    • 4830
    • 4831
    • 4832
    • 4833
    • 4834
    • 4835
    • 4836
    • 4837
    • 4838
    • 4839
    • 4840
    • 4841
    • 4842
    • 4843
    • 4844
    • 4845
    • 4846
    • 4847
    • 4848
    • 4849
    • 4850
    • 4851
    • 4852
    • 4853
    • 4854
    • 4855
    • 4856
    • 4857
    • 4858
    • 4859
    • 4860
    • 4861
    • 4862
    • 4863
    • 4864
    • 4865
    • 4866
    • 4867
    • 4868
    • 4869
    • 4870
    • 4871
    • 4872
    • 4873
    • 4874
    • 4875
    • 4876
    • 4877
  • 相关阅读:
    鸿蒙 DevEcoStudio:简单实现网络请求登录案例
    java毕业设计—— 基于java+JavaEE+jsp的售后服务管理系统设计与实现(毕业论文+程序源码)——售后服务管理系统
    2022 数学建模B题 高教社杯 含半成品论文 部分代码 全部数学模型 和全套思路
    【无标题】
    2022,TO B投资不相信「故事」
    机器学习之数据清洗和预处理
    2022牛客蔚来杯第九场ABEI(G)
    apple-app-site-association nginx
    创建最基本的Web服务器(防止中文乱码)、根据不同的 url 响应不同的 html 内容
    javaScript关于闭包的理解
  • 原文地址:https://blog.csdn.net/qq_28877125/article/details/133148418