From 053df828f7088748b43ab5f40081b492c0b59d2d Mon Sep 17 00:00:00 2001
From: Jeremy Soller <jackpot51@gmail.com>
Date: Fri, 7 Jul 2023 09:29:26 -0600
Subject: [PATCH] Add rtl8139d driver, sort driver binaries

---
 recipes/drivers-initfs/recipe.toml |  2 +-
 recipes/drivers/recipe.toml        | 22 ++++++++++++----------
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/recipes/drivers-initfs/recipe.toml b/recipes/drivers-initfs/recipe.toml
index 05060123b..1e819c837 100644
--- a/recipes/drivers-initfs/recipe.toml
+++ b/recipes/drivers-initfs/recipe.toml
@@ -6,10 +6,10 @@ template = "custom"
 script = """
 BINS=(
     ahcid
+    inputd
     nvmed
     pcid
     vesad
-    inputd
     virtio-blkd
     virtio-gpud
 )
diff --git a/recipes/drivers/recipe.toml b/recipes/drivers/recipe.toml
index 806c041d5..52699eccc 100644
--- a/recipes/drivers/recipe.toml
+++ b/recipes/drivers/recipe.toml
@@ -5,16 +5,18 @@ git = "https://gitlab.redox-os.org/redox-os/drivers.git"
 template = "custom"
 script = """
 # Drivers that are built on all architectures, and NOT in drivers-initfs
-BINS=(  alxd
-        e1000d
-        ihdad
-        ixgbed
-        rtl8168d
-        usbctl
-        usbhidd
-        usbscsid
-        xhcid
-        virtio-netd
+BINS=(
+    alxd
+    e1000d
+    ihdad
+    ixgbed
+    rtl8139d
+    rtl8168d
+    usbctl
+    usbhidd
+    usbscsid
+    virtio-netd
+    xhcid
 )
 
 # Add additional drivers to the list to build, that are not in drivers-initfs
-- 
GitLab