From bfe185b3b02a9ac623f4dc73681477789864e740 Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Thu, 31 Jul 2008 02:20:07 +0300 Subject: [PATCH] udev: enhanced to work-around bug in fl_wrapper by adding the nodes to the flist directly --- filesystem/udev/udev.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/filesystem/udev/udev.conf b/filesystem/udev/udev.conf index 58b02de94..035bbc3cf 100644 --- a/filesystem/udev/udev.conf +++ b/filesystem/udev/udev.conf @@ -19,10 +19,13 @@ fi udev_devices() { local devdir="$root/lib/udev/devices" + local node= echo "Creating base nodes ..." mkdir -p "$devdir" - $confdir/create_nodes.sh $devdir < $confdir/udev_device_nodes.txt + $confdir/create_nodes.sh $devdir < $confdir/udev_device_nodes.txt | while read node; do + add_flist "$node" + done } udev_rules() {