summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2022-07-07 10:25:03 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2022-07-07 18:49:53 +0200
commitd19dcc594fc0b1c7ea65f0100cceec5996d0c9f6 (patch)
treec23616cfa439c2df17d084c43dbc718e6f689390
parent699b52d176cd7464af4444c88f9ea54d64d868a1 (diff)
downloadenea-kernel-cache-d19dcc594fc0b1c7ea65f0100cceec5996d0c9f6.tar.gz
Fix kaudit warnings after hardknott refresh
1. 'CONFIG_XOR_BLOCKS' last val (m) and .config val (y) do not match * Previously we tried to configure this as 'm' to reduce the kernel footprint, but it is selected indirectly as 'y' via: CONFIG_MD_RAID456 (y, set by Intel x86 BSP) CONFIG_ASYNC_XOR CONFIG_XOR_BLOCKS 2. 'CONFIG_CRC_ITU_T' last val (m) and .config val (y) do not match * Upstream 'nfc-generic.cfg' sets this to 'm', but our 'mmc_sd_y.cfg' selects it as 'y' via: CONFIG_MMC_SPI (y) CONFIG_CRC_ITU_T 3. 'CONFIG_ISDN_CAPI' last val (y) and .config val (n) do not match * Upstream enables ISDN, but our kernel footprint reduction disables one of its dependencies (CONFIG_BT=n), make it explicit. 4. 'CONFIG_MEDIA_PLATFORM_SUPPORT' last val (y) and .config val (n) do not match * Upstream enables it, but our kernel footprint reduction disables one of its dependencies (CONFIG_MEDIA_SUPPORT=n), make it explicit. 5. 'CONFIG_*' (many similar options, all depending on CONFIG_IIO) last val (m) and .config val (n) do not match * Upstream enables them, but our kernel footprint reduction disables one of their dependencies (CONFIG_IIO=n) via 'accelerometers_n.cfg'; * create a new configuration fragment ('iio_n.scc') for this and gather all IIO dependencies that we want disabled to make them explicit (moving CONFIG_IIO=n from 'accelerometers_n.cfg' to 'iio_n.cfg'); * 'iio_n.cfg' contains all configuration from yocto-kernel-cache 'iio.cfg' (changing 'm' and/or 'y' to 'n'), including the options that were previously handled by existing features in: - features/accelerometers/accelerometers_n.cfg; - features/inclinometer/inclinometer_n.cfg; - features/hidsensor/hidsensor_n.cfg; * 'iio_n.scc' replaces the 3 old fragments, especially since they were always included together; 6. 'CONFIG_INPUT_SOC_BUTTON_ARRAY' last val (m) and .config val (n) do not match * Upstream enables it, but our kernel footprint reduction disables one of its dependencies (CONFIG_KEYBOARD_GPIO=n), make it explicit. 7. 'CONFIG_INTEL_SOC_PMIC' last val (y) and .config val (n) do not match * Upstream enables it, but our 'i2c_m.cfg' (when added to KERNEL_FEATURES) breaks two of its dependencies (CONFIG_I2C=y, I2C_DESIGNWARE_PLATFORM=y), make it explicit. 8. 'CONFIG_TYPEC_TCPM' last val (m) and .config val (n) do not match 'CONFIG_TYPEC_TCPCI' last val (m) and .config val (n) do not match * Upstream enables them, but our kernel footprint reduction disables one of their dependencies (CONFIG_TYPEC=n), make it explicit. 9. 'CONFIG_SERIO_I8042' last val (m) and .config val (n) do not match * We enable the SERIO_I8042 (wrongfully?) via 'keyboard_n.scc', but its dependency (CONFIG_SERIO) is already disabled by both 'input_n.scc' and 'serio_n.scc'. * re-order scc fragments to silence the warning without changing any actual configuration fragment; 10. 'CONFIG_PRINTER' last val (m) and .config val (n) do not match * Upstream enables it, but our kernel footprint reduction disables one of its dependencies (CONFIG_PARPORT=n), make it explicit. 11. 'CONFIG_USB_NET_RNDIS_HOST' last val (m) and .config val (n) do not match * Upstream enables it, but our kernel footprint reduction disables one of its dependencies (CONFIG_USBNET=n), make it explicit. 12. 'CONFIG_USB_GADGET_VBUS_DRAW' last val (2) and .config val (n) do not match (same with 'CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS') * Both depend on 'USB_GADGET'. Change-Id: Id17c54348adbedcd110f0e4a456763797834c6a8 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
-rw-r--r--features/accelerometers/accelerometers_n.cfg11
-rw-r--r--features/i2csupport/i2c_m.cfg1
-rw-r--r--features/iio/iio_n.cfg205
-rw-r--r--features/iio/iio_n.scc4
-rw-r--r--features/keyboard/keyboard_n.cfg1
-rw-r--r--features/media/media_n.cfg1
-rw-r--r--features/mmc/mmc_sd_y.cfg1
-rw-r--r--features/parport/parport_n.cfg1
-rw-r--r--features/reduced_kernel_footprint/reduced_kernel_footprint.scc6
-rw-r--r--features/reduced_kernel_footprint_guest/reduced_kernel_footprint_guest.scc3
-rw-r--r--features/usbnet/usbnet_n.cfg1
-rw-r--r--features/usbsupport/usbsupport_m.cfg2
-rw-r--r--features/usbsupport/usbsupport_n.cfg6
13 files changed, 224 insertions, 19 deletions
diff --git a/features/accelerometers/accelerometers_n.cfg b/features/accelerometers/accelerometers_n.cfg
index 73ba988..c9249f7 100644
--- a/features/accelerometers/accelerometers_n.cfg
+++ b/features/accelerometers/accelerometers_n.cfg
@@ -1,13 +1,10 @@
1# 1#
2# Accelerometers 2# Accelerometers
3# 3#
4CONFIG_IIO=n
5CONFIG_BMA180=n 4CONFIG_BMA180=n
6# CONFIG_BMA220 is not set
7CONFIG_BMC150_ACCEL=n 5CONFIG_BMC150_ACCEL=n
8CONFIG_BMC150_ACCEL_I2C=n 6CONFIG_BMC150_ACCEL_I2C=n
9CONFIG_BMC150_ACCEL_SPI=n 7CONFIG_BMC150_ACCEL_SPI=n
10# CONFIG_DMARD09 is not set
11CONFIG_HID_SENSOR_ACCEL_3D=n 8CONFIG_HID_SENSOR_ACCEL_3D=n
12CONFIG_IIO_ST_ACCEL_3AXIS=n 9CONFIG_IIO_ST_ACCEL_3AXIS=n
13CONFIG_IIO_ST_ACCEL_I2C_3AXIS=n 10CONFIG_IIO_ST_ACCEL_I2C_3AXIS=n
@@ -15,17 +12,9 @@ CONFIG_IIO_ST_ACCEL_SPI_3AXIS=n
15CONFIG_KXSD9=n 12CONFIG_KXSD9=n
16CONFIG_KXSD9_SPI=n 13CONFIG_KXSD9_SPI=n
17CONFIG_KXSD9_I2C=n 14CONFIG_KXSD9_I2C=n
18# CONFIG_KXCJK1013 is not set
19# CONFIG_MC3230 is not set
20CONFIG_MMA7455=n 15CONFIG_MMA7455=n
21CONFIG_MMA7455_I2C=n 16CONFIG_MMA7455_I2C=n
22# CONFIG_MMA7455_SPI is not set
23# CONFIG_MMA7660 is not set
24CONFIG_MMA8452=n 17CONFIG_MMA8452=n
25CONFIG_MMA9551_CORE=n 18CONFIG_MMA9551_CORE=n
26CONFIG_MMA9551=n 19CONFIG_MMA9551=n
27CONFIG_MMA9553=n 20CONFIG_MMA9553=n
28# CONFIG_MXC4005 is not set
29# CONFIG_MXC6255 is not set
30# CONFIG_STK8312 is not set
31# CONFIG_STK8BA50 is not set
diff --git a/features/i2csupport/i2c_m.cfg b/features/i2csupport/i2c_m.cfg
index 39561ca..3f35d5b 100644
--- a/features/i2csupport/i2c_m.cfg
+++ b/features/i2csupport/i2c_m.cfg
@@ -8,3 +8,4 @@ CONFIG_I2C_MUX=m
8CONFIG_I2C_I801=m 8CONFIG_I2C_I801=m
9CONFIG_I2C_DESIGNWARE_CORE=m 9CONFIG_I2C_DESIGNWARE_CORE=m
10CONFIG_I2C_DESIGNWARE_PLATFORM=m 10CONFIG_I2C_DESIGNWARE_PLATFORM=m
11CONFIG_INTEL_SOC_PMIC=n
diff --git a/features/iio/iio_n.cfg b/features/iio/iio_n.cfg
new file mode 100644
index 0000000..7a104c6
--- /dev/null
+++ b/features/iio/iio_n.cfg
@@ -0,0 +1,205 @@
1#
2# IIO staging drivers
3#
4
5#
6# Light sensors
7#
8CONFIG_SENSORS_ISL29018=n
9CONFIG_SENSORS_ISL29028=n
10CONFIG_TSL2583=n
11CONFIG_TSL2772=n
12
13#
14# Magnetometer sensors
15#
16CONFIG_SENSORS_HMC5843=n
17CONFIG_SENSORS_HMC5843_I2C=n
18CONFIG_SENSORS_HMC5843_SPI=n
19
20CONFIG_IIO=n
21CONFIG_IIO_BUFFER=n
22CONFIG_IIO_BUFFER_CB=n
23CONFIG_IIO_KFIFO_BUF=n
24CONFIG_IIO_TRIGGERED_BUFFER=n
25CONFIG_IIO_TRIGGER=n
26CONFIG_IIO_CONSUMERS_PER_TRIGGER=n
27
28#
29# Accelerometers
30#
31CONFIG_BMA180=n
32CONFIG_BMC150_ACCEL=n
33CONFIG_BMC150_ACCEL_I2C=n
34CONFIG_BMC150_ACCEL_SPI=n
35CONFIG_HID_SENSOR_ACCEL_3D=n
36CONFIG_IIO_ST_ACCEL_3AXIS=n
37CONFIG_IIO_ST_ACCEL_I2C_3AXIS=n
38CONFIG_IIO_ST_ACCEL_SPI_3AXIS=n
39CONFIG_KXSD9=n
40CONFIG_MMA7455=n
41CONFIG_MMA7455_I2C=n
42CONFIG_MMA8452=n
43CONFIG_MMA9551_CORE=n
44CONFIG_MMA9551=n
45CONFIG_MMA9553=n
46
47#
48# Analog to digital converters
49#
50CONFIG_AD_SIGMA_DELTA=n
51CONFIG_AD7266=n
52CONFIG_AD7298=n
53CONFIG_AD7476=n
54CONFIG_AD7791=n
55CONFIG_AD7793=n
56CONFIG_AD7887=n
57CONFIG_AD7923=n
58CONFIG_MAX1363=n
59CONFIG_MCP320X=n
60CONFIG_MCP3422=n
61CONFIG_NAU7802=n
62CONFIG_TI_ADC081C=n
63
64#
65# Amplifiers
66#
67CONFIG_AD8366=n
68
69#
70# Hid Sensor IIO Common
71#
72CONFIG_HID_SENSOR_IIO_COMMON=n
73CONFIG_HID_SENSOR_IIO_TRIGGER=n
74CONFIG_IIO_ST_SENSORS_I2C=n
75CONFIG_IIO_ST_SENSORS_SPI=n
76CONFIG_IIO_ST_SENSORS_CORE=n
77
78#
79# Digital to analog converters
80#
81CONFIG_AD5064=n
82CONFIG_AD5360=n
83CONFIG_AD5380=n
84CONFIG_AD5421=n
85CONFIG_AD5446=n
86CONFIG_AD5449=n
87CONFIG_AD5504=n
88CONFIG_AD5624R_SPI=n
89CONFIG_AD5686_SPI=n
90CONFIG_AD5755=n
91CONFIG_AD5764=n
92CONFIG_AD5791=n
93CONFIG_AD7303=n
94CONFIG_MAX517=n
95CONFIG_MCP4725=n
96
97#
98# Frequency Synthesizers DDS/PLL
99#
100
101#
102# Clock Generator/Distribution
103#
104CONFIG_AD9523=n
105
106#
107# Phase-Locked Loop (PLL) frequency synthesizers
108#
109CONFIG_ADF4350=n
110
111#
112# Digital gyroscope sensors
113#
114CONFIG_ADIS16080=n
115CONFIG_ADIS16130=n
116CONFIG_ADIS16136=n
117CONFIG_ADIS16260=n
118CONFIG_ADXRS450=n
119CONFIG_BMG160=n
120CONFIG_BMG160_I2C=n
121CONFIG_BMG160_SPI=n
122CONFIG_HID_SENSOR_GYRO_3D=n
123CONFIG_IIO_ST_GYRO_3AXIS=n
124CONFIG_IIO_ST_GYRO_I2C_3AXIS=n
125CONFIG_IIO_ST_GYRO_SPI_3AXIS=n
126CONFIG_ITG3200=n
127
128#
129# Humidity sensors
130#
131CONFIG_DHT11=n
132CONFIG_SI7005=n
133CONFIG_SI7020=n
134
135#
136# Inertial measurement units
137#
138CONFIG_ADIS16400=n
139CONFIG_ADIS16480=n
140CONFIG_IIO_ADIS_LIB=n
141CONFIG_IIO_ADIS_LIB_BUFFER=n
142CONFIG_INV_MPU6050_IIO=n
143CONFIG_INV_MPU6050_I2C=n
144CONFIG_INV_MPU6050_SPI=n
145
146#
147# Light sensors
148#
149CONFIG_ADJD_S311=n
150CONFIG_APDS9300=n
151CONFIG_APDS9960=n
152CONFIG_BH1750=n
153CONFIG_CM32181=n
154CONFIG_CM36651=n
155CONFIG_GP2AP020A00F=n
156CONFIG_ISL29125=n
157CONFIG_HID_SENSOR_ALS=n
158CONFIG_LTR501=n
159CONFIG_TCS3414=n
160CONFIG_TCS3472=n
161CONFIG_SENSORS_TSL2563=n
162CONFIG_TSL4531=n
163CONFIG_VCNL4000=n
164
165#
166# Magnetometer sensors
167#
168CONFIG_AK8975=n
169CONFIG_MAG3110=n
170CONFIG_HID_SENSOR_MAGNETOMETER_3D=n
171CONFIG_IIO_ST_MAGN_3AXIS=n
172CONFIG_IIO_ST_MAGN_I2C_3AXIS=n
173CONFIG_IIO_ST_MAGN_SPI_3AXIS=n
174
175#
176# Inclinometer sensors
177#
178CONFIG_HID_SENSOR_INCLINOMETER_3D=n
179
180#
181# Triggers - standalone
182#
183CONFIG_IIO_INTERRUPT_TRIGGER=n
184CONFIG_IIO_SYSFS_TRIGGER=n
185
186#
187# Pressure sensors
188#
189CONFIG_BMP280=n
190CONFIG_MPL115=n
191CONFIG_MPL115_I2C=n
192CONFIG_MPL3115=n
193CONFIG_MS5611=n
194CONFIG_MS5611_I2C=n
195CONFIG_MS5611_SPI=n
196CONFIG_IIO_ST_PRESS=n
197CONFIG_IIO_ST_PRESS_I2C=n
198CONFIG_IIO_ST_PRESS_SPI=n
199CONFIG_T5403=n
200
201#
202# Temperature sensors
203#
204CONFIG_MLX90614=n
205CONFIG_TMP006=n
diff --git a/features/iio/iio_n.scc b/features/iio/iio_n.scc
new file mode 100644
index 0000000..62c50b2
--- /dev/null
+++ b/features/iio/iio_n.scc
@@ -0,0 +1,4 @@
1define KFEATURE_DESCRIPTION "Disable options required for Industrial IO support"
2define KFEATURE_COMPATIBILITY all
3
4kconf hardware iio_n.cfg
diff --git a/features/keyboard/keyboard_n.cfg b/features/keyboard/keyboard_n.cfg
index fdfba5e..6038164 100644
--- a/features/keyboard/keyboard_n.cfg
+++ b/features/keyboard/keyboard_n.cfg
@@ -23,3 +23,4 @@ CONFIG_KEYBOARD_GPIO=n
23# CONFIG_KEYBOARD_SUNKBD is not set 23# CONFIG_KEYBOARD_SUNKBD is not set
24# CONFIG_KEYBOARD_XTKBD is not set 24# CONFIG_KEYBOARD_XTKBD is not set
25CONFIG_SERIO_I8042=m 25CONFIG_SERIO_I8042=m
26CONFIG_INPUT_SOC_BUTTON_ARRAY=n
diff --git a/features/media/media_n.cfg b/features/media/media_n.cfg
index d2db66b..f454269 100644
--- a/features/media/media_n.cfg
+++ b/features/media/media_n.cfg
@@ -1,4 +1,5 @@
1CONFIG_MEDIA_SUPPORT=n 1CONFIG_MEDIA_SUPPORT=n
2CONFIG_MEDIA_PLATFORM_SUPPORT=n
2 3
3 4
4# 5#
diff --git a/features/mmc/mmc_sd_y.cfg b/features/mmc/mmc_sd_y.cfg
index 575c713..526fc87 100644
--- a/features/mmc/mmc_sd_y.cfg
+++ b/features/mmc/mmc_sd_y.cfg
@@ -132,3 +132,4 @@ CONFIG_BTT=y
132# CONFIG_ROMFS_BACKED_BY_MTD is not set 132# CONFIG_ROMFS_BACKED_BY_MTD is not set
133# CONFIG_ROMFS_BACKED_BY_BOTH is not set 133# CONFIG_ROMFS_BACKED_BY_BOTH is not set
134CONFIG_CRC7=y 134CONFIG_CRC7=y
135CONFIG_CRC_ITU_T=y
diff --git a/features/parport/parport_n.cfg b/features/parport/parport_n.cfg
index 1e35578..bb4cf50 100644
--- a/features/parport/parport_n.cfg
+++ b/features/parport/parport_n.cfg
@@ -6,3 +6,4 @@ CONFIG_PARPORT_PC=n
6# CONFIG_PARPORT_GSC is not set 6# CONFIG_PARPORT_GSC is not set
7# CONFIG_PARPORT_AX88796 is not set 7# CONFIG_PARPORT_AX88796 is not set
8# CONFIG_PARPORT_1284 is not set 8# CONFIG_PARPORT_1284 is not set
9CONFIG_PRINTER=n
diff --git a/features/reduced_kernel_footprint/reduced_kernel_footprint.scc b/features/reduced_kernel_footprint/reduced_kernel_footprint.scc
index 64941e0..f6f0a8b 100644
--- a/features/reduced_kernel_footprint/reduced_kernel_footprint.scc
+++ b/features/reduced_kernel_footprint/reduced_kernel_footprint.scc
@@ -2,7 +2,6 @@
2include features/std_kernel/std_kernel_y.scc 2include features/std_kernel/std_kernel_y.scc
3 3
4# Remove all unnecessary kernel feature 4# Remove all unnecessary kernel feature
5include features/accelerometers/accelerometers_n.scc
6include features/acp/acp_n.scc 5include features/acp/acp_n.scc
7include features/acpi/acpi_n.scc 6include features/acpi/acpi_n.scc
8include features/agp/agp_n.scc 7include features/agp/agp_n.scc
@@ -23,10 +22,10 @@ include features/framebuffer/framebuffer_n.scc
23include features/ftrace/ftrace_n.scc 22include features/ftrace/ftrace_n.scc
24include features/hdmi/hdmi_n.scc 23include features/hdmi/hdmi_n.scc
25include features/hid/hid_n.scc 24include features/hid/hid_n.scc
26include features/hidsensor/hidsensor_n.scc
27include features/ieee802154/ieee802154_n.scc 25include features/ieee802154/ieee802154_n.scc
28include features/inclinometer/inclinometer_n.scc 26include features/iio/iio_n.scc
29include features/input/input_n.scc 27include features/input/input_n.scc
28include features/isdn/isdn_n.scc
30include features/keyboard/keyboard_n.scc 29include features/keyboard/keyboard_n.scc
31include features/kgdb/kgdb_n.scc 30include features/kgdb/kgdb_n.scc
32include features/kprobes/kprobes_n.scc 31include features/kprobes/kprobes_n.scc
@@ -64,6 +63,5 @@ include features/mii/mii_m.scc
64include features/overlayfs/overlayfs_m.scc 63include features/overlayfs/overlayfs_m.scc
65include features/usbnet/usbnet_m.scc 64include features/usbnet/usbnet_m.scc
66include features/usbsupport/usbsupport_m.scc 65include features/usbsupport/usbsupport_m.scc
67include features/xor_blocks/xor_blocks_m.scc
68include features/hwmon/hwmon_m.scc 66include features/hwmon/hwmon_m.scc
69include features/leds/leds_m.scc 67include features/leds/leds_m.scc
diff --git a/features/reduced_kernel_footprint_guest/reduced_kernel_footprint_guest.scc b/features/reduced_kernel_footprint_guest/reduced_kernel_footprint_guest.scc
index 33a9aaa..ea18b16 100644
--- a/features/reduced_kernel_footprint_guest/reduced_kernel_footprint_guest.scc
+++ b/features/reduced_kernel_footprint_guest/reduced_kernel_footprint_guest.scc
@@ -15,7 +15,6 @@ include features/nfs/nfs_n.scc
15include features/parport/parport_n.scc 15include features/parport/parport_n.scc
16include features/ppp/ppp_n.scc 16include features/ppp/ppp_n.scc
17include features/prockcore/prockcore_n.scc 17include features/prockcore/prockcore_n.scc
18include features/serio/serio_n.scc
19include features/slip/slip_n.scc 18include features/slip/slip_n.scc
20include features/bug_support/bug_support_n.scc 19include features/bug_support/bug_support_n.scc
21include features/powermanagement/powermanagement_n.scc 20include features/powermanagement/powermanagement_n.scc
@@ -29,12 +28,12 @@ include features/nfc/nfc_n.scc
29include features/sound/sound_n.scc 28include features/sound/sound_n.scc
30include features/usbnet/usbnet_n.scc 29include features/usbnet/usbnet_n.scc
31include features/i2csupport/i2csupport_n.scc 30include features/i2csupport/i2csupport_n.scc
32include features/serio/serio_n.scc
33include features/tablet/tablet_n.scc 31include features/tablet/tablet_n.scc
34include features/mouse/mouse_n.scc 32include features/mouse/mouse_n.scc
35include features/mousedev/mousedev_n.scc 33include features/mousedev/mousedev_n.scc
36include features/keyboard/keyboard_n.scc 34include features/keyboard/keyboard_n.scc
37include features/input/input_n.scc 35include features/input/input_n.scc
36include features/serio/serio_n.scc
38include features/wlan/wlan_n.scc 37include features/wlan/wlan_n.scc
39include features/ftrace/ftrace_n.scc 38include features/ftrace/ftrace_n.scc
40include features/debug/debug_kernel_n.scc 39include features/debug/debug_kernel_n.scc
diff --git a/features/usbnet/usbnet_n.cfg b/features/usbnet/usbnet_n.cfg
index 01b88cd..da19b0c 100644
--- a/features/usbnet/usbnet_n.cfg
+++ b/features/usbnet/usbnet_n.cfg
@@ -40,3 +40,4 @@ CONFIG_USB_NET_ZAURUS=n
40# CONFIG_USB_SIERRA_NET is not set 40# CONFIG_USB_SIERRA_NET is not set
41# CONFIG_USB_VL600 is not set 41# CONFIG_USB_VL600 is not set
42# CONFIG_USB_NET_CH9200 is not set 42# CONFIG_USB_NET_CH9200 is not set
43CONFIG_USB_NET_RNDIS_HOST=n
diff --git a/features/usbsupport/usbsupport_m.cfg b/features/usbsupport/usbsupport_m.cfg
index 43c77b3..b081ab3 100644
--- a/features/usbsupport/usbsupport_m.cfg
+++ b/features/usbsupport/usbsupport_m.cfg
@@ -264,3 +264,5 @@ CONFIG_USB_G_DBGP_SERIAL=n
264# 264#
265CONFIG_TYPEC=n 265CONFIG_TYPEC=n
266CONFIG_TYPEC_WCOVE=n 266CONFIG_TYPEC_WCOVE=n
267CONFIG_TYPEC_TCPM=n
268CONFIG_TYPEC_TCPCI=n
diff --git a/features/usbsupport/usbsupport_n.cfg b/features/usbsupport/usbsupport_n.cfg
index 6e32553..7959433 100644
--- a/features/usbsupport/usbsupport_n.cfg
+++ b/features/usbsupport/usbsupport_n.cfg
@@ -197,8 +197,8 @@ CONFIG_NOP_USB_XCEIV=n
197CONFIG_USB_GADGET=n 197CONFIG_USB_GADGET=n
198# CONFIG_USB_GADGET_DEBUG_FILES is not set 198# CONFIG_USB_GADGET_DEBUG_FILES is not set
199# CONFIG_USB_GADGET_DEBUG_FS is not set 199# CONFIG_USB_GADGET_DEBUG_FS is not set
200CONFIG_USB_GADGET_VBUS_DRAW=2 200CONFIG_USB_GADGET_VBUS_DRAW=n
201CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 201CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=n
202# CONFIG_U_SERIAL_CONSOLE is not set 202# CONFIG_U_SERIAL_CONSOLE is not set
203 203
204# 204#
@@ -264,3 +264,5 @@ CONFIG_TYPEC=n
264CONFIG_TYPEC_WCOVE=n 264CONFIG_TYPEC_WCOVE=n
265# CONFIG_USB_LED_TRIG is not set 265# CONFIG_USB_LED_TRIG is not set
266# CONFIG_USB_ULPI_BUS is not set 266# CONFIG_USB_ULPI_BUS is not set
267CONFIG_TYPEC_TCPM=n
268CONFIG_TYPEC_TCPCI=n