Skip to content

Commit 651d12d

Browse files
committed
gluon-core: add common USB drivers to previous load order migration
The previous list didn't encounter for common usb drivers. This could result in interface order changes when a firmware included those and such a driver was used. Used the following command to get the order on a x86-64 device running v2023.2.4: ``` grep -oi -E '^(tg3|igb|fsl_mph_dr_of|ena|natsemi|amd_xgbe|e1000|ixgbe|3c59x|8139cp|8139too|8390|bnx2|e100|e1000e|forcedeth|igc|ne2k_pci|pcnet32|r8169|sis900|sky2|tulip|via_rhine|via_velocity|asix|ax88179_178a|cdc_eem|cdc_ether|cdc_subset|dm9601|hso|ipheth|mcs7830|pegasus|rndis_host|r8152|smsc95xx)' /proc/modules ```
1 parent 88cc0b7 commit 651d12d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

package/gluon-core/luasrc/lib/gluon/upgrade/019-migrate-interface-order

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,28 @@ local prev_load_order = {
5454
'e100',
5555
'e1000e',
5656
'forcedeth',
57+
'hso',
5758
'igc',
59+
'ipheth',
5860
'ne2k_pci',
5961
'pcnet32',
62+
'pegasus',
63+
'r8152',
6064
'r8169',
6165
'sis900',
6266
'sky2',
6367
'tulip',
6468
'via_rhine',
6569
'via_velocity',
70+
'asix',
71+
'ax88179_178a',
72+
'cdc_eem',
73+
'cdc_ether',
74+
'cdc_subset',
75+
'dm9601',
76+
'mcs7830',
77+
'rndis_host',
78+
'smsc95xx',
6679
}
6780

6881
local prev_load_index = {}

0 commit comments

Comments
 (0)