Changeset 2444 in MondoRescue for branches/2.2.10/mindi/rootfs
- Timestamp:
- Sep 30, 2009, 4:44:40 AM (16 years ago)
- Location:
- branches/2.2.10/mindi/rootfs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.2.10/mindi/rootfs/etc/passwd
r2428 r2444 1 root::0:0::/:/bin/bash 1 2 halt:x:7:0:halt:/sbin:/sbin/halt 2 operator:x:11:0:operator:/root:/bin/bash 3 root::0:0::/root:/bin/bash 3 operator:x:11:0:operator:/:/bin/bash 4 4 shutdown:x:6:0:shutdown:/sbin:/sbin/shutdown 5 5 sync:x:5:0:sync:/sbin:/bin/sync … … 8 8 daemon:x:2:2:daemon:/sbin: 9 9 adm:x:3:4:adm:/var/adm: 10 lp:x:4:7:lp:/var/spool/lpd:11 mail:x:8:12:mail:/var/spool/mail:12 postmaster:x:14:12:postmaster:/var/spool/mail:/bin/bash13 news:x:9:13:news:/usr/lib/news:14 uucp:x:10:14:uucp:/var/spool/uucppublic:15 10 man:x:13:15:man:/usr/man: 16 11 guest:x:405:100:guest:/dev/null:/dev/null -
branches/2.2.10/mindi/rootfs/etc/udev-links.conf
r1804 r2444 56 56 57 57 M null c 1 3 58 M fuse c 10 229 -
branches/2.2.10/mindi/rootfs/sbin/init
r2382 r2444 301 301 fi 302 302 # Depending on udevd version it gives back the hand or not :-( 303 if [ ! "`ps | grep udevd`" ]; then 303 ps | grep udevd 2> /dev/null 1> /dev/null 304 if [ $? -ne 0 ]; then 304 305 /sbin/udevd --daemon & 306 echo "Waiting for udev to start..." 305 307 sleep 5 306 308 fi … … 309 311 /sbin/udevtrigger 310 312 fi 313 echo "Waiting for udev to discover..." 311 314 create_dev_makedev 312 315 # Newer version use udevadm for that 313 if [ -x /sbin/udevadm ]; then 314 /sbin/udevadm settle --timeout=10 315 elif [ -x /sbin/udevsettle ]; then 316 /sbin/udevsettle 316 if [ -x /sbin/udevsettle ]; then 317 /sbin/udevsettle --timeout=10 318 elif [ -x /sbin/udevadm ]; then 319 /sbin/udevadm trigger 320 /sbin/udevadm settle --timeout=10 317 321 fi 318 322 # It seems we need to have more static devs on some distro were -
branches/2.2.10/mindi/rootfs/sbin/start-netfs
r2382 r2444 81 81 if [ "$proto" = "sshfs" ]; then 82 82 LogIt "Mounting SSHFS share ($netfsmount) on /tmp/isodir..." 83 sshfs -o ro $netfsmount /tmp/isodir 83 # We need a correct console for ssh 84 ln -sf /dev/console /dev/tty 85 sshfs -o ro,StrictHostKeyChecking=no $netfsmount /tmp/isodir 84 86 elif [ "$proto" != "" ]; then 85 87 LogIt "Mounting Network share ($netfsmount) on /tmp/isodir..."
Note:
See TracChangeset
for help on using the changeset viewer.