From d06ced8a246a450bcf018e57f343a991dcca9fd1 Mon Sep 17 00:00:00 2001 From: Bjarne von Horn Date: Wed, 24 Jan 2024 12:15:34 +0100 Subject: [PATCH] Add realtek drivers to table. Fixes #94 --- devices/create_driver_table.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/devices/create_driver_table.py b/devices/create_driver_table.py index 20446da0..1a3e5cc9 100644 --- a/devices/create_driver_table.py +++ b/devices/create_driver_table.py @@ -41,9 +41,12 @@ DRIVER_MAP=( ("igb", "igb", "igb_main"), ("igc", "igc", "igc_main"), (".", "r8169", "r8169"), + ("r8169", "r8169", "r8169_main"), ) -DRIVERS = tuple([x[1] for x in DRIVER_MAP]) + +DRIVERS = sorted(set([x[1] for x in DRIVER_MAP])) + def compile_regex(prefix, file_extension): """