Index: /branches/releng-9.0/nanobsd/files/etc/rc.conf
===================================================================
--- /branches/releng-9.0/nanobsd/files/etc/rc.conf	(revision 10600)
+++ /branches/releng-9.0/nanobsd/files/etc/rc.conf	(revision 10601)
@@ -1,2 +1,18 @@
+# Stolen from /sbin/dhclient-script using using no /usr based binaries.
+# Converts an commented list into a SEP (default space) seperated list.
+make_list() {
+  SEP=${2:-' '}
+  oldifs="$IFS"
+  IFS="
+"
+  list=""
+  for line in $1; do
+    line=${line%%[ \t#]*}
+    [ -n "$line" ] && list="$list$SEP$line"
+  done
+  IFS=${oldifs}
+  echo ${list##$SEP}
+}
+
 # No kernel dumps as we don't have a place to store them 
 dumpdev="NO"			
@@ -71,4 +87,5 @@
 #pf_flags="-D ext_if=vr0 -D captive_portal_interfaces=wlan0 -D publicnat=80,443"
 
+
 # Autogenerated flags are used during runtime
 rc_conf_running='/etc/rc.conf.running'
