Linux v4.15-6064-g255442c93843
This commit is contained in:
parent
c0522a6391
commit
2de661d489
@ -1,90 +0,0 @@
|
||||
From 20eeb02a0a489e35de0830b2d61f09d43763c982 Mon Sep 17 00:00:00 2001
|
||||
From: Hans de Goede <hdegoede@redhat.com>
|
||||
Date: Mon, 13 Nov 2017 09:23:19 +0100
|
||||
Subject: [PATCH] Bluetooth: btusb: Add a Kconfig option to enable USB
|
||||
autosuspend by default
|
||||
|
||||
On many laptops the btusb device is the only USB device not having USB
|
||||
autosuspend enabled, this causes not only the HCI but also the USB
|
||||
controller to stay awake, together using aprox. 0.4W of power.
|
||||
|
||||
Modern ultrabooks idle around 6W (at 50% screen brightness), 3.5W for
|
||||
Apollo Lake devices. 0.4W is a significant chunk of this (7 / 11%).
|
||||
|
||||
The btusb driver already contains code to allow enabling USB autosuspend,
|
||||
but currently leaves it up to the user / userspace to enable it. This
|
||||
means that for most people it will not be enabled, leading to an
|
||||
unnecessarily high power consumption.
|
||||
|
||||
Since enabling it is not entirely without risk of regressions, this
|
||||
commit adds a Kconfig option so that Linux distributions can choose to
|
||||
enable it by default. This commit also adds a module option so that when
|
||||
distros receive bugs they can easily ask the user to disable it again
|
||||
for easy debugging.
|
||||
|
||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
||||
---
|
||||
Changes in v2:
|
||||
-s/BT_USB_AUTOSUSPEND/BT_HCIBTUSB_AUTOSUSPEND/
|
||||
-s/enable_usb_autosuspend/enable_autosuspend/
|
||||
---
|
||||
drivers/bluetooth/Kconfig | 10 ++++++++++
|
||||
drivers/bluetooth/btusb.c | 7 +++++++
|
||||
2 files changed, 17 insertions(+)
|
||||
|
||||
diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig
|
||||
index 6475f8c0d3b2..20940417d937 100644
|
||||
--- a/drivers/bluetooth/Kconfig
|
||||
+++ b/drivers/bluetooth/Kconfig
|
||||
@@ -30,6 +30,16 @@ config BT_HCIBTUSB
|
||||
Say Y here to compile support for Bluetooth USB devices into the
|
||||
kernel or say M to compile it as module (btusb).
|
||||
|
||||
+config BT_HCIBTUSB_AUTOSUSPEND
|
||||
+ bool "Enable USB autosuspend for Bluetooth USB devices by default"
|
||||
+ depends on BT_HCIBTUSB
|
||||
+ help
|
||||
+ Say Y here to enable USB autosuspend for Bluetooth USB devices by
|
||||
+ default.
|
||||
+
|
||||
+ This can be overridden by passing btusb.enable_autosuspend=[y|n]
|
||||
+ on the kernel commandline.
|
||||
+
|
||||
config BT_HCIBTUSB_BCM
|
||||
bool "Broadcom protocol support"
|
||||
depends on BT_HCIBTUSB
|
||||
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
|
||||
index c054d7bce490..3386034a44aa 100644
|
||||
--- a/drivers/bluetooth/btusb.c
|
||||
+++ b/drivers/bluetooth/btusb.c
|
||||
@@ -40,6 +40,7 @@
|
||||
|
||||
static bool disable_scofix;
|
||||
static bool force_scofix;
|
||||
+static bool enable_autosuspend = IS_ENABLED(CONFIG_BT_HCIBTUSB_AUTOSUSPEND);
|
||||
|
||||
static bool reset = true;
|
||||
|
||||
@@ -3175,6 +3176,9 @@ static int btusb_probe(struct usb_interface *intf,
|
||||
}
|
||||
#endif
|
||||
|
||||
+ if (enable_autosuspend)
|
||||
+ usb_enable_autosuspend(data->udev);
|
||||
+
|
||||
err = hci_register_dev(hdev);
|
||||
if (err < 0)
|
||||
goto out_free_dev;
|
||||
@@ -3387,6 +3391,9 @@ MODULE_PARM_DESC(disable_scofix, "Disable fixup of wrong SCO buffer size");
|
||||
module_param(force_scofix, bool, 0644);
|
||||
MODULE_PARM_DESC(force_scofix, "Force fixup of wrong SCO buffers size");
|
||||
|
||||
+module_param(enable_autosuspend, bool, 0644);
|
||||
+MODULE_PARM_DESC(enable_autosuspend, "Enable USB autosuspend by default");
|
||||
+
|
||||
module_param(reset, bool, 0644);
|
||||
MODULE_PARM_DESC(reset, "Send HCI reset command on initialization");
|
||||
|
||||
--
|
||||
2.14.3
|
||||
|
@ -1,47 +0,0 @@
|
||||
From a5ffa27c07e06900fcfc50b08de6d11e45830168 Mon Sep 17 00:00:00 2001
|
||||
From: Hans de Goede <hdegoede@redhat.com>
|
||||
Date: Wed, 3 Jan 2018 12:49:44 +0100
|
||||
Subject: [PATCH v2] Bluetooth: btusb: Disable autosuspend on QCA Rome devices
|
||||
|
||||
Commit fd865802c66b ("Bluetooth: btusb: fix QCA Rome suspend/resume") fixes
|
||||
a suspend/resume problem on QCA devices by doing a full reset on resume,
|
||||
reloading the firmware.
|
||||
|
||||
A similar problem happens when using runtime-pm / autosuspend, when this is
|
||||
enabled by the user the QCA Rome device stops working. Reloading the
|
||||
firmware after a runtime suspend is not really an option since the latency
|
||||
caused by this is unacceptable.
|
||||
|
||||
To fix the runtime-pm issues, this commit disables runtime-pm on QCA Rome
|
||||
HCIs, by getting (and not releasing) an usb autopm reference on the btusb
|
||||
interface.
|
||||
|
||||
BugLink: https://bugzilla.redhat.com/show_bug.cgi?id=1514836
|
||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
||||
---
|
||||
drivers/bluetooth/btusb.c | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c
|
||||
index 808c249845db..6ed3a0e5b8f6 100644
|
||||
--- a/drivers/bluetooth/btusb.c
|
||||
+++ b/drivers/bluetooth/btusb.c
|
||||
@@ -3122,8 +3122,15 @@ static int btusb_probe(struct usb_interface *intf,
|
||||
/* QCA Rome devices lose their updated firmware over suspend,
|
||||
* but the USB hub doesn't notice any status change.
|
||||
* Explicitly request a device reset on resume.
|
||||
+ * And disable runtime pm by getting a pm reference, the USB
|
||||
+ * core will drop our reference on disconnect.
|
||||
*/
|
||||
set_bit(BTUSB_RESET_RESUME, &data->flags);
|
||||
+ err = usb_autopm_get_interface(data->intf);
|
||||
+ if (err < 0) {
|
||||
+ BT_ERR("failed to get pm reference %d", err);
|
||||
+ goto out_free_dev;
|
||||
+ }
|
||||
}
|
||||
|
||||
#ifdef CONFIG_BT_HCIBTUSB_RTL
|
||||
--
|
||||
2.14.3
|
||||
|
@ -1,106 +0,0 @@
|
||||
From f5c1da991de077420fda17a236342de5a0068f5d Mon Sep 17 00:00:00 2001
|
||||
From: Hans de Goede <hdegoede@redhat.com>
|
||||
Date: Wed, 22 Nov 2017 12:57:08 +0100
|
||||
Subject: [PATCH v2 1/3] HID: multitouch: Properly deal with Win8 PTP reports
|
||||
with 0 touches
|
||||
|
||||
The Windows Precision Touchpad spec "Figure 4 Button Only Down and Up"
|
||||
and "Table 9 Report Sequence for Button Only Down and Up" indicate
|
||||
that the first packet of a (possibly hybrid mode multi-packet) frame
|
||||
may contain a contact-count of 0 if only a button is pressed and no
|
||||
fingers are detected.
|
||||
|
||||
This means that a value of 0 for contact-count is a valid value and
|
||||
should be used as expected contact count when it is the first packet
|
||||
(num_received == 0), as extra check to make sure that this is the first
|
||||
packet of a buttons only frame, we also check that the timestamp is
|
||||
different.
|
||||
|
||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
||||
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
||||
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
|
||||
---
|
||||
drivers/hid/hid-multitouch.c | 32 ++++++++++++++++++++++++++++++--
|
||||
1 file changed, 30 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
|
||||
index 9ef24b518f12..d8b1cad74faf 100644
|
||||
--- a/drivers/hid/hid-multitouch.c
|
||||
+++ b/drivers/hid/hid-multitouch.c
|
||||
@@ -119,6 +119,9 @@ struct mt_device {
|
||||
unsigned long mt_io_flags; /* mt flags (MT_IO_FLAGS_*) */
|
||||
int cc_index; /* contact count field index in the report */
|
||||
int cc_value_index; /* contact count value index in the field */
|
||||
+ int scantime_index; /* scantime field index in the report */
|
||||
+ int scantime_val_index; /* scantime value index in the field */
|
||||
+ int prev_scantime; /* scantime reported in the previous packet */
|
||||
unsigned last_slot_field; /* the last field of a slot */
|
||||
unsigned mt_report_id; /* the report ID of the multitouch device */
|
||||
unsigned long initial_quirks; /* initial quirks state */
|
||||
@@ -599,6 +602,12 @@ static int mt_touch_input_mapping(struct hid_device *hdev, struct hid_input *hi,
|
||||
EV_MSC, MSC_TIMESTAMP);
|
||||
input_set_capability(hi->input, EV_MSC, MSC_TIMESTAMP);
|
||||
mt_store_field(usage, td, hi);
|
||||
+ /* Ignore if indexes are out of bounds. */
|
||||
+ if (field->index >= field->report->maxfield ||
|
||||
+ usage->usage_index >= field->report_count)
|
||||
+ return 1;
|
||||
+ td->scantime_index = field->index;
|
||||
+ td->scantime_val_index = usage->usage_index;
|
||||
return 1;
|
||||
case HID_DG_CONTACTCOUNT:
|
||||
/* Ignore if indexes are out of bounds. */
|
||||
@@ -855,9 +864,10 @@ static void mt_process_mt_event(struct hid_device *hid, struct hid_field *field,
|
||||
static void mt_touch_report(struct hid_device *hid, struct hid_report *report)
|
||||
{
|
||||
struct mt_device *td = hid_get_drvdata(hid);
|
||||
+ __s32 cls = td->mtclass.name;
|
||||
struct hid_field *field;
|
||||
unsigned count;
|
||||
- int r, n;
|
||||
+ int r, n, scantime = 0;
|
||||
|
||||
/* sticky fingers release in progress, abort */
|
||||
if (test_and_set_bit(MT_IO_FLAGS_RUNNING, &td->mt_io_flags))
|
||||
@@ -867,12 +877,29 @@ static void mt_touch_report(struct hid_device *hid, struct hid_report *report)
|
||||
* Includes multi-packet support where subsequent
|
||||
* packets are sent with zero contactcount.
|
||||
*/
|
||||
+ if (td->scantime_index >= 0) {
|
||||
+ field = report->field[td->scantime_index];
|
||||
+ scantime = field->value[td->scantime_val_index];
|
||||
+ }
|
||||
if (td->cc_index >= 0) {
|
||||
struct hid_field *field = report->field[td->cc_index];
|
||||
int value = field->value[td->cc_value_index];
|
||||
- if (value)
|
||||
+
|
||||
+ /*
|
||||
+ * For Win8 PTPs the first packet (td->num_received == 0) may
|
||||
+ * have a contactcount of 0 if there only is a button event.
|
||||
+ * We double check that this is not a continuation packet
|
||||
+ * of a possible multi-packet frame be checking that the
|
||||
+ * timestamp has changed.
|
||||
+ */
|
||||
+ if ((cls == MT_CLS_WIN_8 || cls == MT_CLS_WIN_8_DUAL) &&
|
||||
+ td->num_received == 0 && td->prev_scantime != scantime)
|
||||
+ td->num_expected = value;
|
||||
+ /* A non 0 contact count always indicates a first packet */
|
||||
+ else if (value)
|
||||
td->num_expected = value;
|
||||
}
|
||||
+ td->prev_scantime = scantime;
|
||||
|
||||
for (r = 0; r < report->maxfield; r++) {
|
||||
field = report->field[r];
|
||||
@@ -1329,6 +1356,7 @@ static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id)
|
||||
td->maxcontact_report_id = -1;
|
||||
td->inputmode_value = MT_INPUTMODE_TOUCHSCREEN;
|
||||
td->cc_index = -1;
|
||||
+ td->scantime_index = -1;
|
||||
td->mt_report_id = -1;
|
||||
hid_set_drvdata(hdev, td);
|
||||
|
||||
--
|
||||
2.14.3
|
||||
|
@ -1,84 +0,0 @@
|
||||
From c25d877f4ee97deb92170129eee4777a5d5997d9 Mon Sep 17 00:00:00 2001
|
||||
From: Hans de Goede <hdegoede@redhat.com>
|
||||
Date: Wed, 22 Nov 2017 12:57:09 +0100
|
||||
Subject: [PATCH v2 2/3] HID: multitouch: Only look at non touch fields in
|
||||
first packet of a frame
|
||||
|
||||
Devices in "single finger hybrid mode" will send one report per finger,
|
||||
on some devices only the first report of such a multi-packet frame will
|
||||
contain a value for BTN_LEFT, in subsequent reports (if multiple fingers
|
||||
are down) the value is always 0, causing hid-mt to report BTN_LEFT going
|
||||
1 - 0 - 1 - 0 when pressing a clickpad and putting down a second finger.
|
||||
This happens for example on USB 0603:0002 mt touchpads.
|
||||
|
||||
This commit fixes this by only reporting non touch fields for the first
|
||||
packet of a (possibly) multi-packet frame.
|
||||
|
||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
||||
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
||||
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
|
||||
---
|
||||
drivers/hid/hid-multitouch.c | 17 +++++++++++++++--
|
||||
1 file changed, 15 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
|
||||
index d8b1cad74faf..760c4a042e6a 100644
|
||||
--- a/drivers/hid/hid-multitouch.c
|
||||
+++ b/drivers/hid/hid-multitouch.c
|
||||
@@ -787,9 +787,11 @@ static int mt_touch_event(struct hid_device *hid, struct hid_field *field,
|
||||
}
|
||||
|
||||
static void mt_process_mt_event(struct hid_device *hid, struct hid_field *field,
|
||||
- struct hid_usage *usage, __s32 value)
|
||||
+ struct hid_usage *usage, __s32 value,
|
||||
+ bool first_packet)
|
||||
{
|
||||
struct mt_device *td = hid_get_drvdata(hid);
|
||||
+ __s32 cls = td->mtclass.name;
|
||||
__s32 quirks = td->mtclass.quirks;
|
||||
struct input_dev *input = field->hidinput->input;
|
||||
|
||||
@@ -846,6 +848,15 @@ static void mt_process_mt_event(struct hid_device *hid, struct hid_field *field,
|
||||
break;
|
||||
|
||||
default:
|
||||
+ /*
|
||||
+ * For Win8 PTP touchpads we should only look at
|
||||
+ * non finger/touch events in the first_packet of
|
||||
+ * a (possible) multi-packet frame.
|
||||
+ */
|
||||
+ if ((cls == MT_CLS_WIN_8 || cls == MT_CLS_WIN_8_DUAL) &&
|
||||
+ !first_packet)
|
||||
+ return;
|
||||
+
|
||||
if (usage->type)
|
||||
input_event(input, usage->type, usage->code,
|
||||
value);
|
||||
@@ -866,6 +877,7 @@ static void mt_touch_report(struct hid_device *hid, struct hid_report *report)
|
||||
struct mt_device *td = hid_get_drvdata(hid);
|
||||
__s32 cls = td->mtclass.name;
|
||||
struct hid_field *field;
|
||||
+ bool first_packet;
|
||||
unsigned count;
|
||||
int r, n, scantime = 0;
|
||||
|
||||
@@ -901,6 +913,7 @@ static void mt_touch_report(struct hid_device *hid, struct hid_report *report)
|
||||
}
|
||||
td->prev_scantime = scantime;
|
||||
|
||||
+ first_packet = td->num_received == 0;
|
||||
for (r = 0; r < report->maxfield; r++) {
|
||||
field = report->field[r];
|
||||
count = field->report_count;
|
||||
@@ -910,7 +923,7 @@ static void mt_touch_report(struct hid_device *hid, struct hid_report *report)
|
||||
|
||||
for (n = 0; n < count; n++)
|
||||
mt_process_mt_event(hid, field, &field->usage[n],
|
||||
- field->value[n]);
|
||||
+ field->value[n], first_packet);
|
||||
}
|
||||
|
||||
if (td->num_received >= td->num_expected)
|
||||
--
|
||||
2.14.3
|
||||
|
@ -1,78 +0,0 @@
|
||||
From 1719566899e5a69b4ba767beb07dab7ceb9ae5a8 Mon Sep 17 00:00:00 2001
|
||||
From: Hans de Goede <hdegoede@redhat.com>
|
||||
Date: Wed, 22 Nov 2017 12:57:10 +0100
|
||||
Subject: [PATCH v2 3/3] HID: multitouch: Combine all left-button events in a
|
||||
frame
|
||||
|
||||
According to the Win8 Precision Touchpad spec, inside the HID_UP_BUTTON
|
||||
usage-page usage 1 is for a clickpad getting clicked, 2 for an external
|
||||
left button and 3 for an external right button. Since Linux uses
|
||||
BTN_LEFT for a clickpad being clicked we end up mapping both usage 1
|
||||
and 2 to BTN_LEFT and if a single report contains both then we ended
|
||||
up always reporting the value of both in a single SYN, e.g. :
|
||||
BTN_LEFT 1, BTN_LEFT 0, SYN. This happens for example with Hantick
|
||||
HTT5288 i2c mt touchpads.
|
||||
|
||||
This commit fixes this by not immediately reporting left button when we
|
||||
parse the report, but instead storing or-ing together the values and
|
||||
reporting the result from mt_sync_frame() when we've a complete frame.
|
||||
|
||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
||||
Reviewed-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
||||
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
|
||||
---
|
||||
drivers/hid/hid-multitouch.c | 20 ++++++++++++++++++++
|
||||
1 file changed, 20 insertions(+)
|
||||
|
||||
diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
|
||||
index 760c4a042e6a..76088f2cf598 100644
|
||||
--- a/drivers/hid/hid-multitouch.c
|
||||
+++ b/drivers/hid/hid-multitouch.c
|
||||
@@ -122,6 +122,7 @@ struct mt_device {
|
||||
int scantime_index; /* scantime field index in the report */
|
||||
int scantime_val_index; /* scantime value index in the field */
|
||||
int prev_scantime; /* scantime reported in the previous packet */
|
||||
+ int left_button_state; /* left button state */
|
||||
unsigned last_slot_field; /* the last field of a slot */
|
||||
unsigned mt_report_id; /* the report ID of the multitouch device */
|
||||
unsigned long initial_quirks; /* initial quirks state */
|
||||
@@ -743,10 +744,16 @@ static void mt_complete_slot(struct mt_device *td, struct input_dev *input)
|
||||
*/
|
||||
static void mt_sync_frame(struct mt_device *td, struct input_dev *input)
|
||||
{
|
||||
+ __s32 cls = td->mtclass.name;
|
||||
+
|
||||
+ if (cls == MT_CLS_WIN_8 || cls == MT_CLS_WIN_8_DUAL)
|
||||
+ input_event(input, EV_KEY, BTN_LEFT, td->left_button_state);
|
||||
+
|
||||
input_mt_sync_frame(input);
|
||||
input_event(input, EV_MSC, MSC_TIMESTAMP, td->timestamp);
|
||||
input_sync(input);
|
||||
td->num_received = 0;
|
||||
+ td->left_button_state = 0;
|
||||
if (test_bit(MT_IO_FLAGS_ACTIVE_SLOTS, &td->mt_io_flags))
|
||||
set_bit(MT_IO_FLAGS_PENDING_SLOTS, &td->mt_io_flags);
|
||||
else
|
||||
@@ -857,6 +864,19 @@ static void mt_process_mt_event(struct hid_device *hid, struct hid_field *field,
|
||||
!first_packet)
|
||||
return;
|
||||
|
||||
+ /*
|
||||
+ * For Win8 PTP touchpads we map both the clickpad click
|
||||
+ * and any "external" left buttons to BTN_LEFT if a
|
||||
+ * device claims to have both we need to report 1 for
|
||||
+ * BTN_LEFT if either is pressed, so we or all values
|
||||
+ * together and report the result in mt_sync_frame().
|
||||
+ */
|
||||
+ if ((cls == MT_CLS_WIN_8 || cls == MT_CLS_WIN_8_DUAL) &&
|
||||
+ usage->type == EV_KEY && usage->code == BTN_LEFT) {
|
||||
+ td->left_button_state |= value;
|
||||
+ return;
|
||||
+ }
|
||||
+
|
||||
if (usage->type)
|
||||
input_event(input, usage->type, usage->code,
|
||||
value);
|
||||
--
|
||||
2.14.3
|
||||
|
File diff suppressed because it is too large
Load Diff
1
configs/fedora/debug/CONFIG_BPF_KPROBE_OVERRIDE
Normal file
1
configs/fedora/debug/CONFIG_BPF_KPROBE_OVERRIDE
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
1
configs/fedora/debug/CONFIG_FAIL_FUNCTION
Normal file
1
configs/fedora/debug/CONFIG_FAIL_FUNCTION
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_FAIL_FUNCTION=y
|
1
configs/fedora/generic/CONFIG_ATH10K_SPECTRAL
Normal file
1
configs/fedora/generic/CONFIG_ATH10K_SPECTRAL
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
1
configs/fedora/generic/CONFIG_ATH9K_COMMON_SPECTRAL
Normal file
1
configs/fedora/generic/CONFIG_ATH9K_COMMON_SPECTRAL
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
1
configs/fedora/generic/CONFIG_CHELSIO_IPSEC_INLINE
Normal file
1
configs/fedora/generic/CONFIG_CHELSIO_IPSEC_INLINE
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
1
configs/fedora/generic/CONFIG_DM_UNSTRIPED
Normal file
1
configs/fedora/generic/CONFIG_DM_UNSTRIPED
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_DM_UNSTRIPED=m
|
1
configs/fedora/generic/CONFIG_GPIO_PCIE_IDIO_24
Normal file
1
configs/fedora/generic/CONFIG_GPIO_PCIE_IDIO_24
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
1
configs/fedora/generic/CONFIG_HID_JABRA
Normal file
1
configs/fedora/generic/CONFIG_HID_JABRA
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_HID_JABRA=m
|
@ -1 +1 @@
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
|
1
configs/fedora/generic/CONFIG_IP6_NF_MATCH_SRH
Normal file
1
configs/fedora/generic/CONFIG_IP6_NF_MATCH_SRH
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
1
configs/fedora/generic/CONFIG_LEDS_LM3692X
Normal file
1
configs/fedora/generic/CONFIG_LEDS_LM3692X
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_LEDS_LM3692X=m
|
1
configs/fedora/generic/CONFIG_LEDS_TRIGGER_NETDEV
Normal file
1
configs/fedora/generic/CONFIG_LEDS_TRIGGER_NETDEV
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
1
configs/fedora/generic/CONFIG_MT76x2E
Normal file
1
configs/fedora/generic/CONFIG_MT76x2E
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_MT76x2E=m
|
1
configs/fedora/generic/CONFIG_NETDEVSIM
Normal file
1
configs/fedora/generic/CONFIG_NETDEVSIM
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_NETDEVSIM is not set
|
1
configs/fedora/generic/CONFIG_NET_DSA_LEGACY
Normal file
1
configs/fedora/generic/CONFIG_NET_DSA_LEGACY
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
1
configs/fedora/generic/CONFIG_NET_VENDOR_CORTINA
Normal file
1
configs/fedora/generic/CONFIG_NET_VENDOR_CORTINA
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
1
configs/fedora/generic/CONFIG_NET_VENDOR_SOCIONEXT
Normal file
1
configs/fedora/generic/CONFIG_NET_VENDOR_SOCIONEXT
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
1
configs/fedora/generic/CONFIG_NFT_FLOW_OFFLOAD
Normal file
1
configs/fedora/generic/CONFIG_NFT_FLOW_OFFLOAD
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE
Normal file
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_NF_FLOW_TABLE=m
|
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE_INET
Normal file
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE_INET
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE_IPV4
Normal file
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE_IPV4
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE_IPV6
Normal file
1
configs/fedora/generic/CONFIG_NF_FLOW_TABLE_IPV6
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
1
configs/fedora/generic/CONFIG_PINCTRL_AXP209
Normal file
1
configs/fedora/generic/CONFIG_PINCTRL_AXP209
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
1
configs/fedora/generic/arm/CONFIG_GEMINI_ETHERNET
Normal file
1
configs/fedora/generic/arm/CONFIG_GEMINI_ETHERNET
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_GEMINI_ETHERNET=m
|
1
configs/fedora/generic/arm/CONFIG_NET_VENDOR_CORTINA
Normal file
1
configs/fedora/generic/arm/CONFIG_NET_VENDOR_CORTINA
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
1
configs/fedora/generic/arm/CONFIG_PINCTRL_AXP209
Normal file
1
configs/fedora/generic/arm/CONFIG_PINCTRL_AXP209
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_PINCTRL_AXP209=m
|
1
configs/fedora/generic/arm/aarch64/CONFIG_ARM64_RAS_EXTN
Normal file
1
configs/fedora/generic/arm/aarch64/CONFIG_ARM64_RAS_EXTN
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_ARM64_RAS_EXTN=y
|
1
configs/fedora/generic/arm/aarch64/CONFIG_ARM_DSU_PMU
Normal file
1
configs/fedora/generic/arm/aarch64/CONFIG_ARM_DSU_PMU
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_ARM_DSU_PMU=m
|
@ -0,0 +1 @@
|
||||
CONFIG_ARM_SDE_INTERFACE=y
|
1
configs/fedora/generic/arm/aarch64/CONFIG_CAVIUM_PTP
Normal file
1
configs/fedora/generic/arm/aarch64/CONFIG_CAVIUM_PTP
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_CAVIUM_PTP=m
|
@ -0,0 +1 @@
|
||||
CONFIG_CRYPTO_SHA3_ARM64=m
|
@ -0,0 +1 @@
|
||||
CONFIG_CRYPTO_SHA512_ARM64_CE=m
|
@ -0,0 +1 @@
|
||||
CONFIG_CRYPTO_SM3_ARM64_CE=m
|
@ -0,0 +1 @@
|
||||
CONFIG_NET_VENDOR_SOCIONEXT=y
|
1
configs/fedora/generic/arm/aarch64/CONFIG_SNI_AVE
Normal file
1
configs/fedora/generic/arm/aarch64/CONFIG_SNI_AVE
Normal file
@ -0,0 +1 @@
|
||||
# CONFIG_SNI_AVE is not set
|
1
configs/fedora/generic/arm/armv7/CONFIG_HW_RANDOM_EXYNOS
Normal file
1
configs/fedora/generic/arm/armv7/CONFIG_HW_RANDOM_EXYNOS
Normal file
@ -0,0 +1 @@
|
||||
CONFIG_HW_RANDOM_EXYNOS=m
|
2
gitrev
2
gitrev
@ -1 +1 @@
|
||||
3da90b159b146672f830bcd2489dd3a1f4e9e089
|
||||
255442c93843f52b6891b21d0b485bf2c97f93c3
|
||||
|
@ -337,6 +337,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -350,6 +351,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -602,6 +604,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -771,6 +774,7 @@ CONFIG_CAVIUM_ERRATUM_23144=y
|
||||
CONFIG_CAVIUM_ERRATUM_23154=y
|
||||
CONFIG_CAVIUM_ERRATUM_27456=y
|
||||
CONFIG_CAVIUM_ERRATUM_30115=y
|
||||
CONFIG_CAVIUM_PTP=m
|
||||
CONFIG_CB710_CORE=m
|
||||
# CONFIG_CB710_DEBUG is not set
|
||||
# CONFIG_CC10001_ADC is not set
|
||||
@ -833,6 +837,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1078,11 +1083,14 @@ CONFIG_CRYPTO_SHA256_ARM64=y
|
||||
CONFIG_CRYPTO_SHA256_ARM=y
|
||||
CONFIG_CRYPTO_SHA256=y
|
||||
CONFIG_CRYPTO_SHA2_ARM64_CE=y
|
||||
CONFIG_CRYPTO_SHA3_ARM64=m
|
||||
CONFIG_CRYPTO_SHA3=m
|
||||
CONFIG_CRYPTO_SHA512_ARM64_CE=m
|
||||
CONFIG_CRYPTO_SHA512_ARM64=m
|
||||
CONFIG_CRYPTO_SHA512_ARM=y
|
||||
CONFIG_CRYPTO_SHA512=m
|
||||
CONFIG_CRYPTO_SIMD=y
|
||||
CONFIG_CRYPTO_SM3_ARM64_CE=m
|
||||
CONFIG_CRYPTO_SM3=m
|
||||
CONFIG_CRYPTO_TEA=m
|
||||
CONFIG_CRYPTO_TEST=m
|
||||
@ -1251,6 +1259,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1567,6 +1576,7 @@ CONFIG_F2FS_FS_SECURITY=y
|
||||
CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1736,6 +1746,7 @@ CONFIG_GAMEPORT_NS558=m
|
||||
# CONFIG_GCC_PLUGINS is not set
|
||||
# CONFIG_GCOV_KERNEL is not set
|
||||
# CONFIG_GDB_SCRIPTS is not set
|
||||
CONFIG_GEMINI_ETHERNET=m
|
||||
# CONFIG_GENERIC_ADC_BATTERY is not set
|
||||
# CONFIG_GENERIC_ADC_THERMAL is not set
|
||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||
@ -1790,6 +1801,7 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
||||
CONFIG_GPIO_PCA953X=y
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
CONFIG_GPIO_PL061=y
|
||||
@ -1869,6 +1881,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -2021,7 +2034,7 @@ CONFIG_HW_RANDOM_MESON=m
|
||||
CONFIG_HW_RANDOM_MSM=m
|
||||
CONFIG_HW_RANDOM_OMAP=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM_XGENE=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2337,6 +2350,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2736,6 +2750,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2768,6 +2783,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3258,6 +3274,7 @@ CONFIG_MSM_MMCC_8974=m
|
||||
CONFIG_MSM_MMCC_8996=m
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AFS_PARTS is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
@ -3417,9 +3434,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3604,6 +3623,7 @@ CONFIG_NET_VENDOR_BROADCOM=y
|
||||
CONFIG_NET_VENDOR_CAVIUM=y
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3637,6 +3657,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
CONFIG_NET_VENDOR_SNI=y
|
||||
CONFIG_NET_VENDOR_SOCIONEXT=y
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3715,6 +3736,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3776,6 +3801,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4117,6 +4143,7 @@ CONFIG_PINCONF=y
|
||||
CONFIG_PINCTRL_AMD=y
|
||||
# CONFIG_PINCTRL_APQ8064 is not set
|
||||
# CONFIG_PINCTRL_APQ8084 is not set
|
||||
CONFIG_PINCTRL_AXP209=m
|
||||
# CONFIG_PINCTRL_BAYTRAIL is not set
|
||||
# CONFIG_PINCTRL_BROXTON is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
@ -5457,6 +5484,7 @@ CONFIG_SND_VIRMIDI=m
|
||||
CONFIG_SND_VIRTUOSO=m
|
||||
CONFIG_SND_VX222=m
|
||||
CONFIG_SND_YMFPCI=m
|
||||
# CONFIG_SNI_AVE is not set
|
||||
CONFIG_SNI_NETSEC=m
|
||||
# CONFIG_SOC_BRCMSTB is not set
|
||||
# CONFIG_SOC_CAMERA is not set
|
||||
|
@ -337,6 +337,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -350,6 +351,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -771,6 +773,7 @@ CONFIG_CAVIUM_ERRATUM_23144=y
|
||||
CONFIG_CAVIUM_ERRATUM_23154=y
|
||||
CONFIG_CAVIUM_ERRATUM_27456=y
|
||||
CONFIG_CAVIUM_ERRATUM_30115=y
|
||||
CONFIG_CAVIUM_PTP=m
|
||||
CONFIG_CB710_CORE=m
|
||||
# CONFIG_CB710_DEBUG is not set
|
||||
# CONFIG_CC10001_ADC is not set
|
||||
@ -833,6 +836,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1077,11 +1081,14 @@ CONFIG_CRYPTO_SHA256_ARM64=y
|
||||
CONFIG_CRYPTO_SHA256_ARM=y
|
||||
CONFIG_CRYPTO_SHA256=y
|
||||
CONFIG_CRYPTO_SHA2_ARM64_CE=y
|
||||
CONFIG_CRYPTO_SHA3_ARM64=m
|
||||
CONFIG_CRYPTO_SHA3=m
|
||||
CONFIG_CRYPTO_SHA512_ARM64_CE=m
|
||||
CONFIG_CRYPTO_SHA512_ARM64=m
|
||||
CONFIG_CRYPTO_SHA512_ARM=y
|
||||
CONFIG_CRYPTO_SHA512=m
|
||||
CONFIG_CRYPTO_SIMD=y
|
||||
CONFIG_CRYPTO_SM3_ARM64_CE=m
|
||||
CONFIG_CRYPTO_SM3=m
|
||||
CONFIG_CRYPTO_TEA=m
|
||||
CONFIG_CRYPTO_TEST=m
|
||||
@ -1241,6 +1248,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1719,6 +1727,7 @@ CONFIG_GAMEPORT_NS558=m
|
||||
# CONFIG_GCC_PLUGINS is not set
|
||||
# CONFIG_GCOV_KERNEL is not set
|
||||
# CONFIG_GDB_SCRIPTS is not set
|
||||
CONFIG_GEMINI_ETHERNET=m
|
||||
# CONFIG_GENERIC_ADC_BATTERY is not set
|
||||
# CONFIG_GENERIC_ADC_THERMAL is not set
|
||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||
@ -1773,6 +1782,7 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
||||
CONFIG_GPIO_PCA953X=y
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
CONFIG_GPIO_PL061=y
|
||||
@ -1852,6 +1862,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -2004,7 +2015,7 @@ CONFIG_HW_RANDOM_MESON=m
|
||||
CONFIG_HW_RANDOM_MSM=m
|
||||
CONFIG_HW_RANDOM_OMAP=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM_XGENE=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2320,6 +2331,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2717,6 +2729,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2749,6 +2762,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3237,6 +3251,7 @@ CONFIG_MSM_MMCC_8974=m
|
||||
CONFIG_MSM_MMCC_8996=m
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AFS_PARTS is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
@ -3396,9 +3411,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3583,6 +3600,7 @@ CONFIG_NET_VENDOR_BROADCOM=y
|
||||
CONFIG_NET_VENDOR_CAVIUM=y
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3616,6 +3634,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
CONFIG_NET_VENDOR_SNI=y
|
||||
CONFIG_NET_VENDOR_SOCIONEXT=y
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3694,6 +3713,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3755,6 +3778,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4096,6 +4120,7 @@ CONFIG_PINCONF=y
|
||||
CONFIG_PINCTRL_AMD=y
|
||||
# CONFIG_PINCTRL_APQ8064 is not set
|
||||
# CONFIG_PINCTRL_APQ8084 is not set
|
||||
CONFIG_PINCTRL_AXP209=m
|
||||
# CONFIG_PINCTRL_BAYTRAIL is not set
|
||||
# CONFIG_PINCTRL_BROXTON is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
@ -5434,6 +5459,7 @@ CONFIG_SND_VIRMIDI=m
|
||||
CONFIG_SND_VIRTUOSO=m
|
||||
CONFIG_SND_VX222=m
|
||||
CONFIG_SND_YMFPCI=m
|
||||
# CONFIG_SNI_AVE is not set
|
||||
CONFIG_SNI_NETSEC=m
|
||||
# CONFIG_SOC_BRCMSTB is not set
|
||||
# CONFIG_SOC_CAMERA is not set
|
||||
|
@ -362,6 +362,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -375,6 +376,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -639,6 +641,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -873,6 +876,7 @@ CONFIG_CHARGER_TWL4030=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1309,6 +1313,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1683,6 +1688,7 @@ CONFIG_F2FS_FS_SECURITY=y
|
||||
CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1855,6 +1861,7 @@ CONFIG_GAMEPORT_NS558=m
|
||||
# CONFIG_GCC_PLUGINS is not set
|
||||
# CONFIG_GCOV_KERNEL is not set
|
||||
# CONFIG_GDB_SCRIPTS is not set
|
||||
CONFIG_GEMINI_ETHERNET=m
|
||||
CONFIG_GENERIC_ADC_BATTERY=m
|
||||
# CONFIG_GENERIC_ADC_THERMAL is not set
|
||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||
@ -1913,6 +1920,7 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
||||
CONFIG_GPIO_PCA953X=y
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
CONFIG_GPIO_PL061=y
|
||||
@ -2001,6 +2009,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -2143,6 +2152,7 @@ CONFIG_HWMON=y
|
||||
CONFIG_HW_PERF_EVENTS=y
|
||||
CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_BCM2835=m
|
||||
CONFIG_HW_RANDOM_EXYNOS=m
|
||||
CONFIG_HW_RANDOM_IMX_RNGC=m
|
||||
CONFIG_HW_RANDOM_MESON=m
|
||||
CONFIG_HW_RANDOM_MSM=m
|
||||
@ -2151,7 +2161,7 @@ CONFIG_HW_RANDOM_OMAP3_ROM=m
|
||||
CONFIG_HW_RANDOM_OMAP=m
|
||||
CONFIG_HW_RANDOM_ST=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK_OMAP=m
|
||||
@ -2486,6 +2496,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2907,6 +2918,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2943,6 +2955,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3467,6 +3480,7 @@ CONFIG_MSM_MMCC_8974=m
|
||||
CONFIG_MSM_MMCC_8996=m
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AFS_PARTS is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
@ -3656,9 +3670,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3843,6 +3859,7 @@ CONFIG_NET_VENDOR_BROADCOM=y
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
# CONFIG_NET_VENDOR_CIRRUS is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3877,6 +3894,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3955,6 +3973,10 @@ CONFIG_NFC_WILINK=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -4016,6 +4038,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4411,6 +4434,7 @@ CONFIG_PINCTRL_APQ8084=m
|
||||
CONFIG_PINCTRL_ARMADA_370=y
|
||||
CONFIG_PINCTRL_ARMADA_XP=y
|
||||
CONFIG_PINCTRL_AS3722=y
|
||||
CONFIG_PINCTRL_AXP209=m
|
||||
# CONFIG_PINCTRL_BAYTRAIL is not set
|
||||
# CONFIG_PINCTRL_BROXTON is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -348,6 +348,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -361,6 +362,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -615,6 +617,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -845,6 +848,7 @@ CONFIG_CHARGER_TPS65090=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1254,6 +1258,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1593,6 +1598,7 @@ CONFIG_F2FS_FS_SECURITY=y
|
||||
CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1761,6 +1767,7 @@ CONFIG_GAMEPORT_NS558=m
|
||||
# CONFIG_GCC_PLUGINS is not set
|
||||
# CONFIG_GCOV_KERNEL is not set
|
||||
# CONFIG_GDB_SCRIPTS is not set
|
||||
CONFIG_GEMINI_ETHERNET=m
|
||||
CONFIG_GENERIC_ADC_BATTERY=m
|
||||
# CONFIG_GENERIC_ADC_THERMAL is not set
|
||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||
@ -1815,6 +1822,7 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
||||
CONFIG_GPIO_PCA953X=y
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
CONFIG_GPIO_PL061=y
|
||||
@ -1896,6 +1904,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -2040,11 +2049,12 @@ CONFIG_HWMON=y
|
||||
CONFIG_HW_PERF_EVENTS=y
|
||||
CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_BCM2835=m
|
||||
CONFIG_HW_RANDOM_EXYNOS=m
|
||||
CONFIG_HW_RANDOM_IMX_RNGC=m
|
||||
CONFIG_HW_RANDOM_MESON=m
|
||||
CONFIG_HW_RANDOM_OMAP=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -2356,6 +2366,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2772,6 +2783,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2806,6 +2818,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3299,6 +3312,7 @@ CONFIG_MSDOS_PARTITION=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AFS_PARTS is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
@ -3481,9 +3495,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3668,6 +3684,7 @@ CONFIG_NET_VENDOR_BROADCOM=y
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
# CONFIG_NET_VENDOR_CIRRUS is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3701,6 +3718,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3777,6 +3795,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3838,6 +3860,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4180,6 +4203,7 @@ CONFIG_PINCONF=y
|
||||
CONFIG_PINCTRL_ARMADA_370=y
|
||||
CONFIG_PINCTRL_ARMADA_XP=y
|
||||
CONFIG_PINCTRL_AS3722=y
|
||||
CONFIG_PINCTRL_AXP209=m
|
||||
# CONFIG_PINCTRL_BAYTRAIL is not set
|
||||
# CONFIG_PINCTRL_BROXTON is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -347,6 +347,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -360,6 +361,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -844,6 +846,7 @@ CONFIG_CHARGER_TPS65090=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1244,6 +1247,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1744,6 +1748,7 @@ CONFIG_GAMEPORT_NS558=m
|
||||
# CONFIG_GCC_PLUGINS is not set
|
||||
# CONFIG_GCOV_KERNEL is not set
|
||||
# CONFIG_GDB_SCRIPTS is not set
|
||||
CONFIG_GEMINI_ETHERNET=m
|
||||
CONFIG_GENERIC_ADC_BATTERY=m
|
||||
# CONFIG_GENERIC_ADC_THERMAL is not set
|
||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||
@ -1798,6 +1803,7 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
||||
CONFIG_GPIO_PCA953X=y
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
CONFIG_GPIO_PL061=y
|
||||
@ -1879,6 +1885,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -2023,11 +2030,12 @@ CONFIG_HWMON=y
|
||||
CONFIG_HW_PERF_EVENTS=y
|
||||
CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_BCM2835=m
|
||||
CONFIG_HW_RANDOM_EXYNOS=m
|
||||
CONFIG_HW_RANDOM_IMX_RNGC=m
|
||||
CONFIG_HW_RANDOM_MESON=m
|
||||
CONFIG_HW_RANDOM_OMAP=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -2339,6 +2347,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2753,6 +2762,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2787,6 +2797,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3278,6 +3289,7 @@ CONFIG_MSDOS_PARTITION=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AFS_PARTS is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
@ -3460,9 +3472,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3647,6 +3661,7 @@ CONFIG_NET_VENDOR_BROADCOM=y
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
# CONFIG_NET_VENDOR_CIRRUS is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3680,6 +3695,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3756,6 +3772,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3817,6 +3837,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4159,6 +4180,7 @@ CONFIG_PINCONF=y
|
||||
CONFIG_PINCTRL_ARMADA_370=y
|
||||
CONFIG_PINCTRL_ARMADA_XP=y
|
||||
CONFIG_PINCTRL_AS3722=y
|
||||
CONFIG_PINCTRL_AXP209=m
|
||||
# CONFIG_PINCTRL_BAYTRAIL is not set
|
||||
# CONFIG_PINCTRL_BROXTON is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -361,6 +361,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -374,6 +375,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -872,6 +874,7 @@ CONFIG_CHARGER_TWL4030=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1299,6 +1302,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1838,6 +1842,7 @@ CONFIG_GAMEPORT_NS558=m
|
||||
# CONFIG_GCC_PLUGINS is not set
|
||||
# CONFIG_GCOV_KERNEL is not set
|
||||
# CONFIG_GDB_SCRIPTS is not set
|
||||
CONFIG_GEMINI_ETHERNET=m
|
||||
CONFIG_GENERIC_ADC_BATTERY=m
|
||||
# CONFIG_GENERIC_ADC_THERMAL is not set
|
||||
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
|
||||
@ -1896,6 +1901,7 @@ CONFIG_GPIO_PCA953X_IRQ=y
|
||||
CONFIG_GPIO_PCA953X=y
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
CONFIG_GPIO_PL061=y
|
||||
@ -1984,6 +1990,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -2126,6 +2133,7 @@ CONFIG_HWMON=y
|
||||
CONFIG_HW_PERF_EVENTS=y
|
||||
CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_BCM2835=m
|
||||
CONFIG_HW_RANDOM_EXYNOS=m
|
||||
CONFIG_HW_RANDOM_IMX_RNGC=m
|
||||
CONFIG_HW_RANDOM_MESON=m
|
||||
CONFIG_HW_RANDOM_MSM=m
|
||||
@ -2134,7 +2142,7 @@ CONFIG_HW_RANDOM_OMAP3_ROM=m
|
||||
CONFIG_HW_RANDOM_OMAP=m
|
||||
CONFIG_HW_RANDOM_ST=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK_OMAP=m
|
||||
@ -2469,6 +2477,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2888,6 +2897,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2924,6 +2934,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3446,6 +3457,7 @@ CONFIG_MSM_MMCC_8974=m
|
||||
CONFIG_MSM_MMCC_8996=m
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AFS_PARTS is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
@ -3635,9 +3647,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3822,6 +3836,7 @@ CONFIG_NET_VENDOR_BROADCOM=y
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
# CONFIG_NET_VENDOR_CIRRUS is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
CONFIG_NET_VENDOR_CORTINA=y
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3856,6 +3871,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3934,6 +3950,10 @@ CONFIG_NFC_WILINK=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3995,6 +4015,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4390,6 +4411,7 @@ CONFIG_PINCTRL_APQ8084=m
|
||||
CONFIG_PINCTRL_ARMADA_370=y
|
||||
CONFIG_PINCTRL_ARMADA_XP=y
|
||||
CONFIG_PINCTRL_AS3722=y
|
||||
CONFIG_PINCTRL_AXP209=m
|
||||
# CONFIG_PINCTRL_BAYTRAIL is not set
|
||||
# CONFIG_PINCTRL_BROXTON is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -250,6 +250,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -263,6 +264,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -720,6 +722,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1093,6 +1096,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1649,6 +1653,7 @@ CONFIG_GPIOLIB=y
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1726,6 +1731,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_HYPERV_MOUSE=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1882,7 +1888,7 @@ CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_GEODE=m
|
||||
CONFIG_HW_RANDOM_INTEL=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIA=m
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2224,6 +2230,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2623,6 +2630,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2655,6 +2663,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3120,6 +3129,7 @@ CONFIG_MSI_WMI=m
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3266,9 +3276,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3452,6 +3464,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3484,6 +3497,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
CONFIG_NET_VENDOR_SOLARFLARE=y
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3563,6 +3577,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3624,6 +3642,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3943,6 +3962,7 @@ CONFIG_PHYSICAL_START=0x400000
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_PINCONF=y
|
||||
# CONFIG_PINCTRL_AMD is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
CONFIG_PINCTRL_BAYTRAIL=y
|
||||
CONFIG_PINCTRL_BROXTON=m
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -251,6 +251,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -264,6 +265,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -504,6 +506,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -721,6 +724,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1104,6 +1108,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1426,6 +1431,7 @@ CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_F71808E_WDT=m
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1667,6 +1673,7 @@ CONFIG_GPIOLIB=y
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1744,6 +1751,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_HYPERV_MOUSE=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1900,7 +1908,7 @@ CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_GEODE=m
|
||||
CONFIG_HW_RANDOM_INTEL=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIA=m
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2242,6 +2250,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2643,6 +2652,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2675,6 +2685,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3140,6 +3151,7 @@ CONFIG_MSI_WMI=m
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3286,9 +3298,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3472,6 +3486,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3504,6 +3519,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
CONFIG_NET_VENDOR_SOLARFLARE=y
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3583,6 +3599,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3644,6 +3664,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3963,6 +3984,7 @@ CONFIG_PHYSICAL_START=0x400000
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_PINCONF=y
|
||||
# CONFIG_PINCTRL_AMD is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
CONFIG_PINCTRL_BAYTRAIL=y
|
||||
CONFIG_PINCTRL_BROXTON=m
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -251,6 +251,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -264,6 +265,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -504,6 +506,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -721,6 +724,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1104,6 +1108,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1426,6 +1431,7 @@ CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_F71808E_WDT=m
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1667,6 +1673,7 @@ CONFIG_GPIOLIB=y
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1744,6 +1751,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_HYPERV_MOUSE=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1900,7 +1908,7 @@ CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_GEODE=m
|
||||
CONFIG_HW_RANDOM_INTEL=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIA=m
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2242,6 +2250,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2643,6 +2652,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2675,6 +2685,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3140,6 +3151,7 @@ CONFIG_MSI_WMI=m
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3286,9 +3298,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3472,6 +3486,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3504,6 +3519,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
CONFIG_NET_VENDOR_SOLARFLARE=y
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3583,6 +3599,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3644,6 +3664,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3963,6 +3984,7 @@ CONFIG_PHYSICAL_START=0x400000
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_PINCONF=y
|
||||
# CONFIG_PINCTRL_AMD is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
CONFIG_PINCTRL_BAYTRAIL=y
|
||||
CONFIG_PINCTRL_BROXTON=m
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -250,6 +250,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -263,6 +264,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -720,6 +722,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1093,6 +1096,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1649,6 +1653,7 @@ CONFIG_GPIOLIB=y
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1726,6 +1731,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_HYPERV_MOUSE=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1882,7 +1888,7 @@ CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_GEODE=m
|
||||
CONFIG_HW_RANDOM_INTEL=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIA=m
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2224,6 +2230,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2623,6 +2630,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2655,6 +2663,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3120,6 +3129,7 @@ CONFIG_MSI_WMI=m
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3266,9 +3276,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3452,6 +3464,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3484,6 +3497,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
CONFIG_NET_VENDOR_SOLARFLARE=y
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3563,6 +3577,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3624,6 +3642,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3943,6 +3962,7 @@ CONFIG_PHYSICAL_START=0x400000
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_PINCONF=y
|
||||
# CONFIG_PINCTRL_AMD is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
CONFIG_PINCTRL_BAYTRAIL=y
|
||||
CONFIG_PINCTRL_BROXTON=m
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -199,6 +199,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -212,6 +213,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -489,6 +491,7 @@ CONFIG_BOOTX_TEXT=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -706,6 +709,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1071,6 +1075,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1343,6 +1348,7 @@ CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_FA_DUMP=y
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
# CONFIG_FAIL_IOMMU is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
@ -1572,6 +1578,7 @@ CONFIG_GPIOLIB=y
|
||||
CONFIG_GPIO_PCA953X=m
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1647,6 +1654,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1796,7 +1804,7 @@ CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_POWERNV=m
|
||||
CONFIG_HW_RANDOM_PSERIES=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -2093,6 +2101,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2487,6 +2496,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2520,6 +2530,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -2969,6 +2980,7 @@ CONFIG_MSI_BITMAP_SELFTEST=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3105,9 +3117,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3290,6 +3304,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3324,6 +3339,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3402,6 +3418,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3463,6 +3483,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3745,6 +3766,7 @@ CONFIG_PHYLINK=m
|
||||
# CONFIG_PI433 is not set
|
||||
CONFIG_PID_NS=y
|
||||
# CONFIG_PINCONF is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
CONFIG_PINCTRL_CEDARFORK=m
|
||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
||||
|
@ -198,6 +198,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -211,6 +212,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -705,6 +707,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
# CONFIG_CHECKPOINT_RESTORE is not set
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1060,6 +1063,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1554,6 +1558,7 @@ CONFIG_GPIOLIB=y
|
||||
CONFIG_GPIO_PCA953X=m
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1629,6 +1634,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1778,7 +1784,7 @@ CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_POWERNV=m
|
||||
CONFIG_HW_RANDOM_PSERIES=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -2075,6 +2081,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2467,6 +2474,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2500,6 +2508,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -2947,6 +2956,7 @@ CONFIG_MSI_BITMAP_SELFTEST=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3083,9 +3093,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3268,6 +3280,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3302,6 +3315,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3380,6 +3394,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3441,6 +3459,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3723,6 +3742,7 @@ CONFIG_PHYLINK=m
|
||||
# CONFIG_PI433 is not set
|
||||
CONFIG_PID_NS=y
|
||||
# CONFIG_PINCONF is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
CONFIG_PINCTRL_CEDARFORK=m
|
||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
||||
|
@ -192,6 +192,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -205,6 +206,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -445,6 +447,7 @@ CONFIG_BOOTX_TEXT=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -662,6 +665,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1026,6 +1030,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1296,6 +1301,7 @@ CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_FA_DUMP=y
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
# CONFIG_FAIL_IOMMU is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
@ -1525,6 +1531,7 @@ CONFIG_GPIOLIB=y
|
||||
CONFIG_GPIO_PCA953X=m
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1600,6 +1607,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1748,7 +1756,7 @@ CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_POWERNV=m
|
||||
CONFIG_HW_RANDOM_PSERIES=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -2038,6 +2046,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2432,6 +2441,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2465,6 +2475,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -2913,6 +2924,7 @@ CONFIG_MSI_BITMAP_SELFTEST=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3049,9 +3061,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3234,6 +3248,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3268,6 +3283,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3346,6 +3362,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3407,6 +3427,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3687,6 +3708,7 @@ CONFIG_PHYLINK=m
|
||||
# CONFIG_PI433 is not set
|
||||
CONFIG_PID_NS=y
|
||||
# CONFIG_PINCONF is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
CONFIG_PINCTRL_CEDARFORK=m
|
||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
||||
|
@ -191,6 +191,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -204,6 +205,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -661,6 +663,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1015,6 +1018,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1507,6 +1511,7 @@ CONFIG_GPIOLIB=y
|
||||
CONFIG_GPIO_PCA953X=m
|
||||
CONFIG_GPIO_PCF857X=m
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1582,6 +1587,7 @@ CONFIG_HID_GYRATION=m
|
||||
CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1730,7 +1736,7 @@ CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_POWERNV=m
|
||||
CONFIG_HW_RANDOM_PSERIES=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -2020,6 +2026,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2412,6 +2419,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2445,6 +2453,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -2891,6 +2900,7 @@ CONFIG_MSI_BITMAP_SELFTEST=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -3027,9 +3037,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3212,6 +3224,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3246,6 +3259,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3324,6 +3338,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3385,6 +3403,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3665,6 +3684,7 @@ CONFIG_PHYLINK=m
|
||||
# CONFIG_PI433 is not set
|
||||
CONFIG_PID_NS=y
|
||||
# CONFIG_PINCONF is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
CONFIG_PINCTRL_CEDARFORK=m
|
||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
||||
|
@ -196,6 +196,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -209,6 +210,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -446,6 +448,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -664,6 +667,7 @@ CONFIG_CGROUPS=y
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHECK_STACK=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1026,6 +1030,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1292,6 +1297,7 @@ CONFIG_F2FS_FS_SECURITY=y
|
||||
CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1500,6 +1506,7 @@ CONFIG_GPIO_EXAR=m
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1571,6 +1578,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
# CONFIG_HID is not set
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1709,7 +1717,7 @@ CONFIG_HWLAT_TRACER=y
|
||||
CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_S390=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -1991,6 +1999,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2377,6 +2386,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2409,6 +2419,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -2853,6 +2864,7 @@ CONFIG_MSDOS_PARTITION=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -2986,9 +2998,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3172,6 +3186,7 @@ CONFIG_NET_VENDOR_AQUANTIA=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
# CONFIG_NET_VENDOR_CHELSIO is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
# CONFIG_NET_VENDOR_DLINK is not set
|
||||
# CONFIG_NET_VENDOR_EMULEX is not set
|
||||
@ -3204,6 +3219,7 @@ CONFIG_NET_VENDOR_AQUANTIA=y
|
||||
# CONFIG_NET_VENDOR_SIS is not set
|
||||
# CONFIG_NET_VENDOR_SMSC is not set
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3280,6 +3296,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3341,6 +3361,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3621,6 +3642,7 @@ CONFIG_PHYLINK=m
|
||||
# CONFIG_PI433 is not set
|
||||
CONFIG_PID_NS=y
|
||||
# CONFIG_PINCONF is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
CONFIG_PINCTRL_CEDARFORK=m
|
||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
||||
|
@ -195,6 +195,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -208,6 +209,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -663,6 +665,7 @@ CONFIG_CGROUPS=y
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHECK_STACK=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1015,6 +1018,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1482,6 +1486,7 @@ CONFIG_GPIO_EXAR=m
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1553,6 +1558,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_ICADE=m
|
||||
# CONFIG_HID is not set
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1691,7 +1697,7 @@ CONFIG_HWLAT_TRACER=y
|
||||
CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_S390=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
CONFIG_HWSPINLOCK=y
|
||||
@ -1973,6 +1979,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2357,6 +2364,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2389,6 +2397,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -2831,6 +2840,7 @@ CONFIG_MSDOS_PARTITION=y
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
# CONFIG_MTD_BLKDEVS is not set
|
||||
@ -2964,9 +2974,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3150,6 +3162,7 @@ CONFIG_NET_VENDOR_AQUANTIA=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
# CONFIG_NET_VENDOR_CHELSIO is not set
|
||||
# CONFIG_NET_VENDOR_CISCO is not set
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
# CONFIG_NET_VENDOR_DEC is not set
|
||||
# CONFIG_NET_VENDOR_DLINK is not set
|
||||
# CONFIG_NET_VENDOR_EMULEX is not set
|
||||
@ -3182,6 +3195,7 @@ CONFIG_NET_VENDOR_AQUANTIA=y
|
||||
# CONFIG_NET_VENDOR_SIS is not set
|
||||
# CONFIG_NET_VENDOR_SMSC is not set
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
# CONFIG_NET_VENDOR_SOLARFLARE is not set
|
||||
# CONFIG_NET_VENDOR_STMICRO is not set
|
||||
# CONFIG_NET_VENDOR_SUN is not set
|
||||
@ -3258,6 +3272,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3319,6 +3337,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3599,6 +3618,7 @@ CONFIG_PHYLINK=m
|
||||
# CONFIG_PI433 is not set
|
||||
CONFIG_PID_NS=y
|
||||
# CONFIG_PINCONF is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
CONFIG_PINCTRL_CEDARFORK=m
|
||||
# CONFIG_PINCTRL_IPQ8074 is not set
|
||||
|
@ -254,6 +254,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -267,6 +268,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -516,6 +518,7 @@ CONFIG_BOOT_PRINTK_DELAY=y
|
||||
CONFIG_BOUNCE=y
|
||||
CONFIG_BPF_JIT_ALWAYS_ON=y
|
||||
CONFIG_BPF_JIT=y
|
||||
CONFIG_BPF_KPROBE_OVERRIDE=y
|
||||
CONFIG_BPF_STREAM_PARSER=y
|
||||
CONFIG_BPF_SYSCALL=y
|
||||
CONFIG_BPQETHER=m
|
||||
@ -735,6 +738,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1150,6 +1154,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1474,6 +1479,7 @@ CONFIG_F2FS_FS_XATTR=y
|
||||
# CONFIG_F2FS_IO_TRACE is not set
|
||||
CONFIG_F2FS_STAT_FS=y
|
||||
CONFIG_F71808E_WDT=m
|
||||
CONFIG_FAIL_FUNCTION=y
|
||||
# CONFIG_FAIL_FUTEX is not set
|
||||
CONFIG_FAIL_IO_TIMEOUT=y
|
||||
CONFIG_FAIL_MAKE_REQUEST=y
|
||||
@ -1710,6 +1716,7 @@ CONFIG_GPIOLIB=y
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1789,6 +1796,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_HYPERV_MOUSE=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1942,7 +1950,7 @@ CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_INTEL=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIA=m
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2299,6 +2307,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2701,6 +2710,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2733,6 +2743,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3190,6 +3201,7 @@ CONFIG_MSI_WMI=m
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
CONFIG_MTD_BLKDEVS=m
|
||||
@ -3331,9 +3343,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3517,6 +3531,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3549,6 +3564,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
CONFIG_NET_VENDOR_SOLARFLARE=y
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3628,6 +3644,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3689,6 +3709,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -4011,6 +4032,7 @@ CONFIG_PHYSICAL_START=0x1000000
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_PINCONF=y
|
||||
# CONFIG_PINCTRL_AMD is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
CONFIG_PINCTRL_BAYTRAIL=y
|
||||
CONFIG_PINCTRL_BROXTON=m
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
@ -253,6 +253,7 @@ CONFIG_ATH10K_DEBUGFS=y
|
||||
CONFIG_ATH10K=m
|
||||
CONFIG_ATH10K_PCI=m
|
||||
CONFIG_ATH10K_SDIO=m
|
||||
# CONFIG_ATH10K_SPECTRAL is not set
|
||||
# CONFIG_ATH10K_TRACING is not set
|
||||
CONFIG_ATH10K_USB=m
|
||||
CONFIG_ATH5K_DEBUG=y
|
||||
@ -266,6 +267,7 @@ CONFIG_ATH6KL_USB=m
|
||||
CONFIG_ATH9K_AHB=y
|
||||
CONFIG_ATH9K_BTCOEX_SUPPORT=y
|
||||
# CONFIG_ATH9K_CHANNEL_CONTEXT is not set
|
||||
# CONFIG_ATH9K_COMMON_SPECTRAL is not set
|
||||
CONFIG_ATH9K_DEBUGFS=y
|
||||
# CONFIG_ATH9K_DEBUG is not set
|
||||
# CONFIG_ATH9K_DYNACK is not set
|
||||
@ -734,6 +736,7 @@ CONFIG_CHARGER_SMB347=m
|
||||
# CONFIG_CHASH_SELFTEST is not set
|
||||
# CONFIG_CHASH_STATS is not set
|
||||
CONFIG_CHECKPOINT_RESTORE=y
|
||||
CONFIG_CHELSIO_IPSEC_INLINE=y
|
||||
CONFIG_CHELSIO_T1_1G=y
|
||||
CONFIG_CHELSIO_T1=m
|
||||
CONFIG_CHELSIO_T3=m
|
||||
@ -1139,6 +1142,7 @@ CONFIG_DM_SNAPSHOT=y
|
||||
CONFIG_DM_SWITCH=m
|
||||
CONFIG_DM_THIN_PROVISIONING=m
|
||||
CONFIG_DM_UEVENT=y
|
||||
CONFIG_DM_UNSTRIPED=m
|
||||
CONFIG_DM_VERITY_FEC=y
|
||||
CONFIG_DM_VERITY=m
|
||||
CONFIG_DM_ZERO=y
|
||||
@ -1692,6 +1696,7 @@ CONFIG_GPIOLIB=y
|
||||
# CONFIG_GPIO_PCA953X is not set
|
||||
# CONFIG_GPIO_PCF857X is not set
|
||||
# CONFIG_GPIO_PCH is not set
|
||||
# CONFIG_GPIO_PCIE_IDIO_24 is not set
|
||||
CONFIG_GPIO_PCI_IDIO_16=m
|
||||
# CONFIG_GPIO_PISOSR is not set
|
||||
# CONFIG_GPIO_RDC321X is not set
|
||||
@ -1771,6 +1776,7 @@ CONFIG_HID_HOLTEK=m
|
||||
CONFIG_HID_HYPERV_MOUSE=m
|
||||
CONFIG_HID_ICADE=m
|
||||
CONFIG_HID_ITE=m
|
||||
CONFIG_HID_JABRA=m
|
||||
CONFIG_HID_KENSINGTON=m
|
||||
CONFIG_HID_KEYTOUCH=m
|
||||
CONFIG_HID_KYE=m
|
||||
@ -1924,7 +1930,7 @@ CONFIG_HWPOISON_INJECT=m
|
||||
CONFIG_HW_RANDOM_AMD=m
|
||||
CONFIG_HW_RANDOM_INTEL=m
|
||||
CONFIG_HW_RANDOM_TIMERIOMEM=m
|
||||
CONFIG_HW_RANDOM_TPM=m
|
||||
CONFIG_HW_RANDOM_TPM=y
|
||||
CONFIG_HW_RANDOM_VIA=m
|
||||
CONFIG_HW_RANDOM_VIRTIO=m
|
||||
CONFIG_HW_RANDOM=y
|
||||
@ -2281,6 +2287,7 @@ CONFIG_IP6_NF_MATCH_MH=m
|
||||
CONFIG_IP6_NF_MATCH_OPTS=m
|
||||
CONFIG_IP6_NF_MATCH_RPFILTER=m
|
||||
CONFIG_IP6_NF_MATCH_RT=m
|
||||
CONFIG_IP6_NF_MATCH_SRH=m
|
||||
CONFIG_IP6_NF_NAT=m
|
||||
CONFIG_IP6_NF_RAW=m
|
||||
CONFIG_IP6_NF_SECURITY=m
|
||||
@ -2681,6 +2688,7 @@ CONFIG_LEDS_IS31FL32XX=m
|
||||
CONFIG_LEDS_LM3530=m
|
||||
# CONFIG_LEDS_LM355x is not set
|
||||
# CONFIG_LEDS_LM3642 is not set
|
||||
CONFIG_LEDS_LM3692X=m
|
||||
# CONFIG_LEDS_LOCOMO is not set
|
||||
CONFIG_LEDS_LP3944=m
|
||||
CONFIG_LEDS_LP3952=m
|
||||
@ -2713,6 +2721,7 @@ CONFIG_LEDS_TRIGGER_DISK=y
|
||||
CONFIG_LEDS_TRIGGER_GPIO=m
|
||||
CONFIG_LEDS_TRIGGER_HEARTBEAT=m
|
||||
CONFIG_LEDS_TRIGGER_MTD=y
|
||||
CONFIG_LEDS_TRIGGER_NETDEV=m
|
||||
CONFIG_LEDS_TRIGGER_ONESHOT=m
|
||||
CONFIG_LEDS_TRIGGER_PANIC=y
|
||||
CONFIG_LEDS_TRIGGERS=y
|
||||
@ -3170,6 +3179,7 @@ CONFIG_MSI_WMI=m
|
||||
# CONFIG_MSM_GCC_8994 is not set
|
||||
CONFIG_MSPRO_BLOCK=m
|
||||
CONFIG_MT7601U=m
|
||||
CONFIG_MT76x2E=m
|
||||
# CONFIG_MTD_ABSENT is not set
|
||||
# CONFIG_MTD_AR7_PARTS is not set
|
||||
CONFIG_MTD_BLKDEVS=m
|
||||
@ -3311,9 +3321,11 @@ CONFIG_NET_CORE=y
|
||||
# CONFIG_NET_DCCPPROBE is not set
|
||||
CONFIG_NETDEVICES=y
|
||||
CONFIG_NET_DEVLINK=m
|
||||
# CONFIG_NETDEVSIM is not set
|
||||
CONFIG_NET_DROP_MONITOR=y
|
||||
CONFIG_NET_DSA_BCM_SF2=m
|
||||
CONFIG_NET_DSA_HWMON=y
|
||||
# CONFIG_NET_DSA_LEGACY is not set
|
||||
CONFIG_NET_DSA_LOOP=m
|
||||
CONFIG_NET_DSA=m
|
||||
CONFIG_NET_DSA_MT7530=m
|
||||
@ -3497,6 +3509,7 @@ CONFIG_NET_VENDOR_BROCADE=y
|
||||
# CONFIG_NET_VENDOR_CAVIUM is not set
|
||||
CONFIG_NET_VENDOR_CHELSIO=y
|
||||
CONFIG_NET_VENDOR_CISCO=y
|
||||
# CONFIG_NET_VENDOR_CORTINA is not set
|
||||
CONFIG_NET_VENDOR_DEC=y
|
||||
CONFIG_NET_VENDOR_DLINK=y
|
||||
CONFIG_NET_VENDOR_EMULEX=y
|
||||
@ -3529,6 +3542,7 @@ CONFIG_NET_VENDOR_SILAN=y
|
||||
CONFIG_NET_VENDOR_SIS=y
|
||||
CONFIG_NET_VENDOR_SMSC=y
|
||||
# CONFIG_NET_VENDOR_SNI is not set
|
||||
# CONFIG_NET_VENDOR_SOCIONEXT is not set
|
||||
CONFIG_NET_VENDOR_SOLARFLARE=y
|
||||
CONFIG_NET_VENDOR_STMICRO=y
|
||||
CONFIG_NET_VENDOR_SUN=y
|
||||
@ -3608,6 +3622,10 @@ CONFIG_NFC_TRF7970A=m
|
||||
CONFIG_NF_DUP_IPV4=m
|
||||
CONFIG_NF_DUP_IPV6=m
|
||||
CONFIG_NF_DUP_NETDEV=m
|
||||
CONFIG_NF_FLOW_TABLE_INET=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV4=m
|
||||
CONFIG_NF_FLOW_TABLE_IPV6=m
|
||||
CONFIG_NF_FLOW_TABLE=m
|
||||
CONFIG_NF_LOG_ARP=m
|
||||
CONFIG_NF_LOG_BRIDGE=m
|
||||
CONFIG_NF_LOG_IPV4=m
|
||||
@ -3669,6 +3687,7 @@ CONFIG_NFT_FIB_INET=m
|
||||
CONFIG_NFT_FIB_IPV4=m
|
||||
CONFIG_NFT_FIB_IPV6=m
|
||||
CONFIG_NFT_FIB_NETDEV=m
|
||||
CONFIG_NFT_FLOW_OFFLOAD=m
|
||||
CONFIG_NFT_FWD_NETDEV=m
|
||||
CONFIG_NFT_HASH=m
|
||||
CONFIG_NFT_LIMIT=m
|
||||
@ -3991,6 +4010,7 @@ CONFIG_PHYSICAL_START=0x1000000
|
||||
CONFIG_PID_NS=y
|
||||
CONFIG_PINCONF=y
|
||||
# CONFIG_PINCTRL_AMD is not set
|
||||
# CONFIG_PINCTRL_AXP209 is not set
|
||||
CONFIG_PINCTRL_BAYTRAIL=y
|
||||
CONFIG_PINCTRL_BROXTON=m
|
||||
# CONFIG_PINCTRL_CANNONLAKE is not set
|
||||
|
22
kernel.spec
22
kernel.spec
@ -69,7 +69,7 @@ Summary: The Linux kernel
|
||||
# The rc snapshot level
|
||||
%global rcrev 0
|
||||
# The git snapshot level
|
||||
%define gitrev 2
|
||||
%define gitrev 3
|
||||
# Set rpm version accordingly
|
||||
%define rpmversion 4.%{upstream_sublevel}.0
|
||||
%endif
|
||||
@ -591,9 +591,6 @@ Patch307: arm-dts-imx6qdl-udoo-Disable-usbh1-to-avoid-kernel-hang.patch
|
||||
# Fix USB on the RPi https://patchwork.kernel.org/patch/9879371/
|
||||
Patch308: bcm283x-dma-mapping-skip-USB-devices-when-configuring-DMA-during-probe.patch
|
||||
|
||||
# https://git.kernel.org/pub/scm/linux/kernel/git/ardb/linux.git/log/?h=synquacer-netsec
|
||||
Patch330: arm64-socionext-96b-enablement.patch
|
||||
|
||||
# 400 - IBM (ppc/s390x) patches
|
||||
|
||||
# 500 - Temp fixes/CVEs etc
|
||||
@ -611,23 +608,9 @@ Patch619: input-rmi4-remove-the-need-for-artifical-IRQ.patch
|
||||
# rhbz 1509461
|
||||
Patch625: v3-2-2-Input-synaptics---Lenovo-X1-Carbon-5-should-use-SMBUS-RMI.patch
|
||||
|
||||
# For https://fedoraproject.org/wiki/Changes/ImprovedLaptopBatteryLife
|
||||
# Queued in bluetooth-next for merging into 4.16
|
||||
Patch628: 0001-Bluetooth-btusb-Add-a-Kconfig-option-to-enable-USB-a.patch
|
||||
|
||||
# Fix left-button not working with some hid-multitouch touchpads
|
||||
# Adding these suggested by Benjamin Tissoires
|
||||
# Queued in hid.git/for-4.16/hid-quirks-cleanup/multitouch for merging into 4.16
|
||||
Patch630: 0001-HID-multitouch-Properly-deal-with-Win8-PTP-reports-w.patch
|
||||
Patch631: 0002-HID-multitouch-Only-look-at-non-touch-fields-in-firs.patch
|
||||
Patch632: 0003-HID-multitouch-Combine-all-left-button-events-in-a-f.patch
|
||||
|
||||
# rhbz1514969, submitted upstream
|
||||
Patch640: 0001-platform-x86-dell-laptop-Filter-out-spurious-keyboar.patch
|
||||
|
||||
# rhbz1514836, submitted upstream
|
||||
Patch641: 0001-Bluetooth-btusb-Disable-autosuspend-on-QCA-Rome-devi.patch
|
||||
|
||||
# Speculative Execution patches
|
||||
Patch642: prevent-bounds-check-bypass-via-speculative-execution.patch
|
||||
|
||||
@ -1895,6 +1878,9 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Thu Feb 01 2018 Justin M. Forbes <jforbes@fedoraproject.org> - 4.16.0-0.rc0.git3.1
|
||||
- Linux v4.15-6064-g255442c93843
|
||||
|
||||
* Wed Jan 31 2018 Justin M. Forbes <jforbes@fedoraproject.org> - 4.16.0-0.rc0.git2.1
|
||||
- Linux v4.15-2341-g3da90b159b14
|
||||
|
||||
|
2
sources
2
sources
@ -1,2 +1,2 @@
|
||||
SHA512 (linux-4.15.tar.xz) = c00d92659df815a53dcac7dde145b742b1f20867d380c07cb09ddb3295d6ff10f8931b21ef0b09d7156923a3957b39d74d87c883300173b2e20690d2b4ec35ea
|
||||
SHA512 (patch-4.15-git2.xz) = 1846ed5cb0c256126b87435f2e8708931abf6aaac8f76c4f4e96da70329308ba27d15bae5a7d049d583cd480b4258748bee92ae390743fcc2d9925523f26bcbf
|
||||
SHA512 (patch-4.15-git3.xz) = 17b5f3214e1f39352e499fa6744013b5d676d07edcb99b437ec835b2f8b36d9de245ab5567f0fad1e80575f78a420be608f48bfd53bffa5d429bb7791ec0a719
|
||||
|
Loading…
Reference in New Issue
Block a user