]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
udev: Rename enable_codel to network-aqm
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 2 Dec 2021 12:37:42 +0000 (12:37 +0000)
committerArne Fitzenreiter <arne_f@ipfire.org>
Sun, 16 Jan 2022 15:17:50 +0000 (15:17 +0000)
This is a more generic term since CoDel is no longer being used

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
config/rootfiles/common/udev
config/udev/99-aqm.rules [new file with mode: 0644]
config/udev/99-codel.rules [deleted file]
config/udev/network-aqm [moved from config/udev/enable_codel with 100% similarity]
lfs/udev

index 4a01f3eef750dfb2caa9ca75941b5d8833783a8e..5c1267abe671fc66243fa32f8114d5d6a612fe34 100644 (file)
@@ -31,9 +31,9 @@ lib/udev
 lib/udev/ata_id
 lib/udev/cdrom_id
 lib/udev/collect
-lib/udev/enable_codel
 lib/udev/init-net-rules.sh
 lib/udev/mtd_probe
+lib/udev/network-aqm
 lib/udev/network-hotplug-bridges
 lib/udev/network-hotplug-rename
 lib/udev/network-hotplug-vlan
@@ -64,7 +64,7 @@ lib/udev/rules.d/75-probe_mtd.rules
 lib/udev/rules.d/78-sound-card.rules
 lib/udev/rules.d/80-drivers.rules
 lib/udev/rules.d/90-hwrng.rules
-lib/udev/rules.d/99-codel.rules
+lib/udev/rules.d/99-aqm.rules
 lib/udev/rules.d/99-offloading.rules
 lib/udev/scsi_id
 lib/udev/v4l_id
diff --git a/config/udev/99-aqm.rules b/config/udev/99-aqm.rules
new file mode 100644 (file)
index 0000000..69c909d
--- /dev/null
@@ -0,0 +1,2 @@
+# Call the AQM script
+SUBSYSTEM=="net", RUN+="/lib/udev/network-aqm"
diff --git a/config/udev/99-codel.rules b/config/udev/99-codel.rules
deleted file mode 100644 (file)
index d6747ba..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-# Call the enable codel script.
-SUBSYSTEM=="net", RUN+="/lib/udev/enable_codel"
index cfad0398ba8199edcd6e2edbf69b22a8c4019c24..3f526a3fac4239628f31972251b272e517c57340 100644 (file)
--- a/lfs/udev
+++ b/lfs/udev
@@ -126,11 +126,11 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
        install -v -m 644 $(DIR_SRC)/config/udev/90-hwrng.rules \
                /lib/udev/rules.d
 
-       # Install codel rules.
-       install -v -m 644 $(DIR_SRC)/config/udev/99-codel.rules \
+       # Install AQM rules
+       install -v -m 644 $(DIR_SRC)/config/udev/99-aqm.rules \
                /lib/udev/rules.d
-       install -m 755 $(DIR_SRC)/config/udev/enable_codel \
-               /lib/udev/enable_codel
+       install -m 755 $(DIR_SRC)/config/udev/network-aqm \
+               /lib/udev/network-aqm
 
        # Install offloading rules
        install -v -m 644 $(DIR_SRC)/config/udev/99-offloading.rules \