diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2022-07-07 10:25:03 +0200 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2022-07-07 18:49:53 +0200 |
commit | d19dcc594fc0b1c7ea65f0100cceec5996d0c9f6 (patch) | |
tree | c23616cfa439c2df17d084c43dbc718e6f689390 | |
parent | 699b52d176cd7464af4444c88f9ea54d64d868a1 (diff) | |
download | enea-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.cfg | 11 | ||||
-rw-r--r-- | features/i2csupport/i2c_m.cfg | 1 | ||||
-rw-r--r-- | features/iio/iio_n.cfg | 205 | ||||
-rw-r--r-- | features/iio/iio_n.scc | 4 | ||||
-rw-r--r-- | features/keyboard/keyboard_n.cfg | 1 | ||||
-rw-r--r-- | features/media/media_n.cfg | 1 | ||||
-rw-r--r-- | features/mmc/mmc_sd_y.cfg | 1 | ||||
-rw-r--r-- | features/parport/parport_n.cfg | 1 | ||||
-rw-r--r-- | features/reduced_kernel_footprint/reduced_kernel_footprint.scc | 6 | ||||
-rw-r--r-- | features/reduced_kernel_footprint_guest/reduced_kernel_footprint_guest.scc | 3 | ||||
-rw-r--r-- | features/usbnet/usbnet_n.cfg | 1 | ||||
-rw-r--r-- | features/usbsupport/usbsupport_m.cfg | 2 | ||||
-rw-r--r-- | features/usbsupport/usbsupport_n.cfg | 6 |
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 | # |
4 | CONFIG_IIO=n | ||
5 | CONFIG_BMA180=n | 4 | CONFIG_BMA180=n |
6 | # CONFIG_BMA220 is not set | ||
7 | CONFIG_BMC150_ACCEL=n | 5 | CONFIG_BMC150_ACCEL=n |
8 | CONFIG_BMC150_ACCEL_I2C=n | 6 | CONFIG_BMC150_ACCEL_I2C=n |
9 | CONFIG_BMC150_ACCEL_SPI=n | 7 | CONFIG_BMC150_ACCEL_SPI=n |
10 | # CONFIG_DMARD09 is not set | ||
11 | CONFIG_HID_SENSOR_ACCEL_3D=n | 8 | CONFIG_HID_SENSOR_ACCEL_3D=n |
12 | CONFIG_IIO_ST_ACCEL_3AXIS=n | 9 | CONFIG_IIO_ST_ACCEL_3AXIS=n |
13 | CONFIG_IIO_ST_ACCEL_I2C_3AXIS=n | 10 | CONFIG_IIO_ST_ACCEL_I2C_3AXIS=n |
@@ -15,17 +12,9 @@ CONFIG_IIO_ST_ACCEL_SPI_3AXIS=n | |||
15 | CONFIG_KXSD9=n | 12 | CONFIG_KXSD9=n |
16 | CONFIG_KXSD9_SPI=n | 13 | CONFIG_KXSD9_SPI=n |
17 | CONFIG_KXSD9_I2C=n | 14 | CONFIG_KXSD9_I2C=n |
18 | # CONFIG_KXCJK1013 is not set | ||
19 | # CONFIG_MC3230 is not set | ||
20 | CONFIG_MMA7455=n | 15 | CONFIG_MMA7455=n |
21 | CONFIG_MMA7455_I2C=n | 16 | CONFIG_MMA7455_I2C=n |
22 | # CONFIG_MMA7455_SPI is not set | ||
23 | # CONFIG_MMA7660 is not set | ||
24 | CONFIG_MMA8452=n | 17 | CONFIG_MMA8452=n |
25 | CONFIG_MMA9551_CORE=n | 18 | CONFIG_MMA9551_CORE=n |
26 | CONFIG_MMA9551=n | 19 | CONFIG_MMA9551=n |
27 | CONFIG_MMA9553=n | 20 | CONFIG_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 | |||
8 | CONFIG_I2C_I801=m | 8 | CONFIG_I2C_I801=m |
9 | CONFIG_I2C_DESIGNWARE_CORE=m | 9 | CONFIG_I2C_DESIGNWARE_CORE=m |
10 | CONFIG_I2C_DESIGNWARE_PLATFORM=m | 10 | CONFIG_I2C_DESIGNWARE_PLATFORM=m |
11 | CONFIG_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 | # | ||
8 | CONFIG_SENSORS_ISL29018=n | ||
9 | CONFIG_SENSORS_ISL29028=n | ||
10 | CONFIG_TSL2583=n | ||
11 | CONFIG_TSL2772=n | ||
12 | |||
13 | # | ||
14 | # Magnetometer sensors | ||
15 | # | ||
16 | CONFIG_SENSORS_HMC5843=n | ||
17 | CONFIG_SENSORS_HMC5843_I2C=n | ||
18 | CONFIG_SENSORS_HMC5843_SPI=n | ||
19 | |||
20 | CONFIG_IIO=n | ||
21 | CONFIG_IIO_BUFFER=n | ||
22 | CONFIG_IIO_BUFFER_CB=n | ||
23 | CONFIG_IIO_KFIFO_BUF=n | ||
24 | CONFIG_IIO_TRIGGERED_BUFFER=n | ||
25 | CONFIG_IIO_TRIGGER=n | ||
26 | CONFIG_IIO_CONSUMERS_PER_TRIGGER=n | ||
27 | |||
28 | # | ||
29 | # Accelerometers | ||
30 | # | ||
31 | CONFIG_BMA180=n | ||
32 | CONFIG_BMC150_ACCEL=n | ||
33 | CONFIG_BMC150_ACCEL_I2C=n | ||
34 | CONFIG_BMC150_ACCEL_SPI=n | ||
35 | CONFIG_HID_SENSOR_ACCEL_3D=n | ||
36 | CONFIG_IIO_ST_ACCEL_3AXIS=n | ||
37 | CONFIG_IIO_ST_ACCEL_I2C_3AXIS=n | ||
38 | CONFIG_IIO_ST_ACCEL_SPI_3AXIS=n | ||
39 | CONFIG_KXSD9=n | ||
40 | CONFIG_MMA7455=n | ||
41 | CONFIG_MMA7455_I2C=n | ||
42 | CONFIG_MMA8452=n | ||
43 | CONFIG_MMA9551_CORE=n | ||
44 | CONFIG_MMA9551=n | ||
45 | CONFIG_MMA9553=n | ||
46 | |||
47 | # | ||
48 | # Analog to digital converters | ||
49 | # | ||
50 | CONFIG_AD_SIGMA_DELTA=n | ||
51 | CONFIG_AD7266=n | ||
52 | CONFIG_AD7298=n | ||
53 | CONFIG_AD7476=n | ||
54 | CONFIG_AD7791=n | ||
55 | CONFIG_AD7793=n | ||
56 | CONFIG_AD7887=n | ||
57 | CONFIG_AD7923=n | ||
58 | CONFIG_MAX1363=n | ||
59 | CONFIG_MCP320X=n | ||
60 | CONFIG_MCP3422=n | ||
61 | CONFIG_NAU7802=n | ||
62 | CONFIG_TI_ADC081C=n | ||
63 | |||
64 | # | ||
65 | # Amplifiers | ||
66 | # | ||
67 | CONFIG_AD8366=n | ||
68 | |||
69 | # | ||
70 | # Hid Sensor IIO Common | ||
71 | # | ||
72 | CONFIG_HID_SENSOR_IIO_COMMON=n | ||
73 | CONFIG_HID_SENSOR_IIO_TRIGGER=n | ||
74 | CONFIG_IIO_ST_SENSORS_I2C=n | ||
75 | CONFIG_IIO_ST_SENSORS_SPI=n | ||
76 | CONFIG_IIO_ST_SENSORS_CORE=n | ||
77 | |||
78 | # | ||
79 | # Digital to analog converters | ||
80 | # | ||
81 | CONFIG_AD5064=n | ||
82 | CONFIG_AD5360=n | ||
83 | CONFIG_AD5380=n | ||
84 | CONFIG_AD5421=n | ||
85 | CONFIG_AD5446=n | ||
86 | CONFIG_AD5449=n | ||
87 | CONFIG_AD5504=n | ||
88 | CONFIG_AD5624R_SPI=n | ||
89 | CONFIG_AD5686_SPI=n | ||
90 | CONFIG_AD5755=n | ||
91 | CONFIG_AD5764=n | ||
92 | CONFIG_AD5791=n | ||
93 | CONFIG_AD7303=n | ||
94 | CONFIG_MAX517=n | ||
95 | CONFIG_MCP4725=n | ||
96 | |||
97 | # | ||
98 | # Frequency Synthesizers DDS/PLL | ||
99 | # | ||
100 | |||
101 | # | ||
102 | # Clock Generator/Distribution | ||
103 | # | ||
104 | CONFIG_AD9523=n | ||
105 | |||
106 | # | ||
107 | # Phase-Locked Loop (PLL) frequency synthesizers | ||
108 | # | ||
109 | CONFIG_ADF4350=n | ||
110 | |||
111 | # | ||
112 | # Digital gyroscope sensors | ||
113 | # | ||
114 | CONFIG_ADIS16080=n | ||
115 | CONFIG_ADIS16130=n | ||
116 | CONFIG_ADIS16136=n | ||
117 | CONFIG_ADIS16260=n | ||
118 | CONFIG_ADXRS450=n | ||
119 | CONFIG_BMG160=n | ||
120 | CONFIG_BMG160_I2C=n | ||
121 | CONFIG_BMG160_SPI=n | ||
122 | CONFIG_HID_SENSOR_GYRO_3D=n | ||
123 | CONFIG_IIO_ST_GYRO_3AXIS=n | ||
124 | CONFIG_IIO_ST_GYRO_I2C_3AXIS=n | ||
125 | CONFIG_IIO_ST_GYRO_SPI_3AXIS=n | ||
126 | CONFIG_ITG3200=n | ||
127 | |||
128 | # | ||
129 | # Humidity sensors | ||
130 | # | ||
131 | CONFIG_DHT11=n | ||
132 | CONFIG_SI7005=n | ||
133 | CONFIG_SI7020=n | ||
134 | |||
135 | # | ||
136 | # Inertial measurement units | ||
137 | # | ||
138 | CONFIG_ADIS16400=n | ||
139 | CONFIG_ADIS16480=n | ||
140 | CONFIG_IIO_ADIS_LIB=n | ||
141 | CONFIG_IIO_ADIS_LIB_BUFFER=n | ||
142 | CONFIG_INV_MPU6050_IIO=n | ||
143 | CONFIG_INV_MPU6050_I2C=n | ||
144 | CONFIG_INV_MPU6050_SPI=n | ||
145 | |||
146 | # | ||
147 | # Light sensors | ||
148 | # | ||
149 | CONFIG_ADJD_S311=n | ||
150 | CONFIG_APDS9300=n | ||
151 | CONFIG_APDS9960=n | ||
152 | CONFIG_BH1750=n | ||
153 | CONFIG_CM32181=n | ||
154 | CONFIG_CM36651=n | ||
155 | CONFIG_GP2AP020A00F=n | ||
156 | CONFIG_ISL29125=n | ||
157 | CONFIG_HID_SENSOR_ALS=n | ||
158 | CONFIG_LTR501=n | ||
159 | CONFIG_TCS3414=n | ||
160 | CONFIG_TCS3472=n | ||
161 | CONFIG_SENSORS_TSL2563=n | ||
162 | CONFIG_TSL4531=n | ||
163 | CONFIG_VCNL4000=n | ||
164 | |||
165 | # | ||
166 | # Magnetometer sensors | ||
167 | # | ||
168 | CONFIG_AK8975=n | ||
169 | CONFIG_MAG3110=n | ||
170 | CONFIG_HID_SENSOR_MAGNETOMETER_3D=n | ||
171 | CONFIG_IIO_ST_MAGN_3AXIS=n | ||
172 | CONFIG_IIO_ST_MAGN_I2C_3AXIS=n | ||
173 | CONFIG_IIO_ST_MAGN_SPI_3AXIS=n | ||
174 | |||
175 | # | ||
176 | # Inclinometer sensors | ||
177 | # | ||
178 | CONFIG_HID_SENSOR_INCLINOMETER_3D=n | ||
179 | |||
180 | # | ||
181 | # Triggers - standalone | ||
182 | # | ||
183 | CONFIG_IIO_INTERRUPT_TRIGGER=n | ||
184 | CONFIG_IIO_SYSFS_TRIGGER=n | ||
185 | |||
186 | # | ||
187 | # Pressure sensors | ||
188 | # | ||
189 | CONFIG_BMP280=n | ||
190 | CONFIG_MPL115=n | ||
191 | CONFIG_MPL115_I2C=n | ||
192 | CONFIG_MPL3115=n | ||
193 | CONFIG_MS5611=n | ||
194 | CONFIG_MS5611_I2C=n | ||
195 | CONFIG_MS5611_SPI=n | ||
196 | CONFIG_IIO_ST_PRESS=n | ||
197 | CONFIG_IIO_ST_PRESS_I2C=n | ||
198 | CONFIG_IIO_ST_PRESS_SPI=n | ||
199 | CONFIG_T5403=n | ||
200 | |||
201 | # | ||
202 | # Temperature sensors | ||
203 | # | ||
204 | CONFIG_MLX90614=n | ||
205 | CONFIG_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 @@ | |||
1 | define KFEATURE_DESCRIPTION "Disable options required for Industrial IO support" | ||
2 | define KFEATURE_COMPATIBILITY all | ||
3 | |||
4 | kconf 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 |
25 | CONFIG_SERIO_I8042=m | 25 | CONFIG_SERIO_I8042=m |
26 | CONFIG_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 @@ | |||
1 | CONFIG_MEDIA_SUPPORT=n | 1 | CONFIG_MEDIA_SUPPORT=n |
2 | CONFIG_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 |
134 | CONFIG_CRC7=y | 134 | CONFIG_CRC7=y |
135 | CONFIG_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 |
9 | CONFIG_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 @@ | |||
2 | include features/std_kernel/std_kernel_y.scc | 2 | include features/std_kernel/std_kernel_y.scc |
3 | 3 | ||
4 | # Remove all unnecessary kernel feature | 4 | # Remove all unnecessary kernel feature |
5 | include features/accelerometers/accelerometers_n.scc | ||
6 | include features/acp/acp_n.scc | 5 | include features/acp/acp_n.scc |
7 | include features/acpi/acpi_n.scc | 6 | include features/acpi/acpi_n.scc |
8 | include features/agp/agp_n.scc | 7 | include features/agp/agp_n.scc |
@@ -23,10 +22,10 @@ include features/framebuffer/framebuffer_n.scc | |||
23 | include features/ftrace/ftrace_n.scc | 22 | include features/ftrace/ftrace_n.scc |
24 | include features/hdmi/hdmi_n.scc | 23 | include features/hdmi/hdmi_n.scc |
25 | include features/hid/hid_n.scc | 24 | include features/hid/hid_n.scc |
26 | include features/hidsensor/hidsensor_n.scc | ||
27 | include features/ieee802154/ieee802154_n.scc | 25 | include features/ieee802154/ieee802154_n.scc |
28 | include features/inclinometer/inclinometer_n.scc | 26 | include features/iio/iio_n.scc |
29 | include features/input/input_n.scc | 27 | include features/input/input_n.scc |
28 | include features/isdn/isdn_n.scc | ||
30 | include features/keyboard/keyboard_n.scc | 29 | include features/keyboard/keyboard_n.scc |
31 | include features/kgdb/kgdb_n.scc | 30 | include features/kgdb/kgdb_n.scc |
32 | include features/kprobes/kprobes_n.scc | 31 | include features/kprobes/kprobes_n.scc |
@@ -64,6 +63,5 @@ include features/mii/mii_m.scc | |||
64 | include features/overlayfs/overlayfs_m.scc | 63 | include features/overlayfs/overlayfs_m.scc |
65 | include features/usbnet/usbnet_m.scc | 64 | include features/usbnet/usbnet_m.scc |
66 | include features/usbsupport/usbsupport_m.scc | 65 | include features/usbsupport/usbsupport_m.scc |
67 | include features/xor_blocks/xor_blocks_m.scc | ||
68 | include features/hwmon/hwmon_m.scc | 66 | include features/hwmon/hwmon_m.scc |
69 | include features/leds/leds_m.scc | 67 | include 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 | |||
15 | include features/parport/parport_n.scc | 15 | include features/parport/parport_n.scc |
16 | include features/ppp/ppp_n.scc | 16 | include features/ppp/ppp_n.scc |
17 | include features/prockcore/prockcore_n.scc | 17 | include features/prockcore/prockcore_n.scc |
18 | include features/serio/serio_n.scc | ||
19 | include features/slip/slip_n.scc | 18 | include features/slip/slip_n.scc |
20 | include features/bug_support/bug_support_n.scc | 19 | include features/bug_support/bug_support_n.scc |
21 | include features/powermanagement/powermanagement_n.scc | 20 | include features/powermanagement/powermanagement_n.scc |
@@ -29,12 +28,12 @@ include features/nfc/nfc_n.scc | |||
29 | include features/sound/sound_n.scc | 28 | include features/sound/sound_n.scc |
30 | include features/usbnet/usbnet_n.scc | 29 | include features/usbnet/usbnet_n.scc |
31 | include features/i2csupport/i2csupport_n.scc | 30 | include features/i2csupport/i2csupport_n.scc |
32 | include features/serio/serio_n.scc | ||
33 | include features/tablet/tablet_n.scc | 31 | include features/tablet/tablet_n.scc |
34 | include features/mouse/mouse_n.scc | 32 | include features/mouse/mouse_n.scc |
35 | include features/mousedev/mousedev_n.scc | 33 | include features/mousedev/mousedev_n.scc |
36 | include features/keyboard/keyboard_n.scc | 34 | include features/keyboard/keyboard_n.scc |
37 | include features/input/input_n.scc | 35 | include features/input/input_n.scc |
36 | include features/serio/serio_n.scc | ||
38 | include features/wlan/wlan_n.scc | 37 | include features/wlan/wlan_n.scc |
39 | include features/ftrace/ftrace_n.scc | 38 | include features/ftrace/ftrace_n.scc |
40 | include features/debug/debug_kernel_n.scc | 39 | include 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 |
43 | CONFIG_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 | # |
265 | CONFIG_TYPEC=n | 265 | CONFIG_TYPEC=n |
266 | CONFIG_TYPEC_WCOVE=n | 266 | CONFIG_TYPEC_WCOVE=n |
267 | CONFIG_TYPEC_TCPM=n | ||
268 | CONFIG_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 | |||
197 | CONFIG_USB_GADGET=n | 197 | CONFIG_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 |
200 | CONFIG_USB_GADGET_VBUS_DRAW=2 | 200 | CONFIG_USB_GADGET_VBUS_DRAW=n |
201 | CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 | 201 | CONFIG_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 | |||
264 | CONFIG_TYPEC_WCOVE=n | 264 | CONFIG_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 |
267 | CONFIG_TYPEC_TCPM=n | ||
268 | CONFIG_TYPEC_TCPCI=n | ||