[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#501359: initramfs-tools: MODULES=dep does not like Xen virtual block devices



On Mon, 2008-12-15 at 11:17 +0100, maximilian attems wrote: 
> > update-initramfs: Generating /boot/initrd.img-2.6.26-1-xen-686
> > mkinitramfs: missing xvda root /dev/xvda1 /sys entry
> > 
> > So here you are.  This virtual machine has a single virtual partition
> > (/dev/xvda1) imported, no /dev/xvda.
> 
> hmm could you please post the output of
> ls /sys/block
> 
> so that i can add the relevant rule for xen block devices.
> thanks

Ferenc seems to be using the xvda1=img1,xvda2=img2 scheme of Xen disks
(this is what xentools gets you) rather than the whole disk with
partition scheme.

In the xvda1/xvda2 scheme /sys/block contains:
        # ls /sys/block/
        ram0  ram1  ram10  ram11  ram12  ram13 ram14  ram15  ram2  ram3
        ram4 ram5  ram6  ram7  ram8 ram9  xvda1  xvda2

In the whole disk scheme it contains xvda as you would expect:
        # ls /sys/block/
        loop0  loop1  loop2  loop3  loop4  loop5  loop6  loop7 ram0
        ram1  ram10  ram11  ram12  ram13 ram14  ram15  ram2  ram3  ram4
        ram5  ram6  ram7  ram8 ram9  xvda

I've attached a patch which takes care of this difference. However the
modules still aren't loaded.

Note that the -xen type images seem to have the block driver builtin
(and therefore work fine) while the -686-bigmem ones have it modular
(xen-blkfront.ko) and break with MODULES=dep.

I've attached ls -lRt of my /sys running -686-bigmem
and /sys/devices/vbd-51712/modalias contains "xen:vbd" which is present
as an alias on the xen-blkfront.ko module. Any other info required
please ask.

Ian.
-- 
Ian Campbell

One meets his destiny often on the road he takes to avoid it.
--- /usr/share/initramfs-tools/hook-functions.orig	2008-12-17 21:48:06.000000000 +0000
+++ /usr/share/initramfs-tools/hook-functions	2008-12-17 21:53:02.000000000 +0000
@@ -269,6 +269,14 @@
 		root=${root#/dev/}
 		block=$(awk "/^${root}/{print substr(\$5, 1, 3); exit}" \
 			/proc/mdstat)
+	# Xen virtual device /dev/xvdX
+	elif [ "${root#/dev/xvd}" != "${root}" ]; then
+		block=${root#/dev/}
+		# Xen has a mode where only the individual partitions are registered with the kernel
+		# as well as the usual full disk with partition table scheme.
+		if [ ! -e /sys/block/${block} ] ; then
+			block=${block%[0-9]*}
+		fi
 	# classical root device
 	else
 		block=${root#/dev/}
/sys/:
total 0
drwxr-xr-x  3 root root 0 2008-12-17 22:08 firmware
drwxr-xr-x 30 root root 0 2008-12-17 22:08 module
drwxr-xr-x  2 root root 0 2008-12-17 22:08 fs
drwxr-xr-x 27 root root 0 2008-12-17 22:05 block
drwxr-xr-x  2 root root 0 2008-12-17 22:05 power
drwxr-xr-x 10 root root 0 2008-12-17 22:05 bus
drwxr-xr-x 19 root root 0 2008-12-17 22:05 class
drwxr-xr-x  8 root root 0 2008-12-17 22:05 devices
drwxr-xr-x  4 root root 0 2008-12-17 22:05 kernel

/sys/firmware:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 ibft

/sys/firmware/ibft:
total 0

/sys/module:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:08 8250
drwxr-xr-x 3 root root 0 2008-12-17 22:08 atkbd
drwxr-xr-x 2 root root 0 2008-12-17 22:08 braille_console
drwxr-xr-x 2 root root 0 2008-12-17 22:08 brd
drwxr-xr-x 5 root root 0 2008-12-17 22:08 evdev
drwxr-xr-x 5 root root 0 2008-12-17 22:08 ext3
drwxr-xr-x 3 root root 0 2008-12-17 22:08 i8042
drwxr-xr-x 5 root root 0 2008-12-17 22:08 ipv6
drwxr-xr-x 5 root root 0 2008-12-17 22:08 jbd
drwxr-xr-x 5 root root 0 2008-12-17 22:08 loop
drwxr-xr-x 5 root root 0 2008-12-17 22:08 mbcache
drwxr-xr-x 3 root root 0 2008-12-17 22:08 mousedev
drwxr-xr-x 6 root root 0 2008-12-17 22:08 pcspkr
drwxr-xr-x 3 root root 0 2008-12-17 22:08 tcp_cubic
drwxr-xr-x 5 root root 0 2008-12-17 22:08 thermal_sys
drwxr-xr-x 6 root root 0 2008-12-17 22:08 xen_blkfront
drwxr-xr-x 6 root root 0 2008-12-17 22:08 xen_netfront
drwxr-xr-x 3 root root 0 2008-12-17 22:08 acpi
drwxr-xr-x 2 root root 0 2008-12-17 22:08 aerdriver
drwxr-xr-x 2 root root 0 2008-12-17 22:08 capability
drwxr-xr-x 2 root root 0 2008-12-17 22:08 core
drwxr-xr-x 3 root root 0 2008-12-17 22:08 keyboard
drwxr-xr-x 2 root root 0 2008-12-17 22:08 mtrr
drwxr-xr-x 3 root root 0 2008-12-17 22:08 printk
drwxr-xr-x 2 root root 0 2008-12-17 22:08 rcuclassic
drwxr-xr-x 3 root root 0 2008-12-17 22:08 spurious
drwxr-xr-x 3 root root 0 2008-12-17 22:08 vt
drwxr-xr-x 3 root root 0 2008-12-17 22:08 xen_fbfront

/sys/module/8250:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/8250/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 nr_uarts
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 share_irqs
-r--r--r-- 1 root root 4096 2008-12-17 22:08 probe_rsa

/sys/module/atkbd:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 drivers

/sys/module/atkbd/drivers:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 serio:atkbd -> ../../../bus/serio/drivers/atkbd

/sys/module/braille_console:
total 0

/sys/module/brd:
total 0

/sys/module/evdev:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/evdev/holders:
total 0

/sys/module/evdev/notes:
total 0

/sys/module/evdev/sections:
total 0

/sys/module/ext3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/ext3/holders:
total 0

/sys/module/ext3/notes:
total 0

/sys/module/ext3/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __bug_table

/sys/module/i8042:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/i8042/parameters:
total 0
-rw------- 1 root root 4096 2008-12-22 09:05 panicblink
-rw------- 1 root root 4096 2008-12-17 22:08 debug

/sys/module/ipv6:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/ipv6/holders:
total 0

/sys/module/ipv6/notes:
total 0

/sys/module/ipv6/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __bug_table
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __kcrctab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __kcrctab_gpl
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab_gpl
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab_strings

/sys/module/jbd:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/jbd/holders:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 ext3 -> ../../ext3

/sys/module/jbd/notes:
total 0

/sys/module/jbd/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __bug_table
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __kcrctab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab_strings

/sys/module/loop:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/loop/holders:
total 0

/sys/module/loop/notes:
total 0

/sys/module/loop/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __bug_table
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __kcrctab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab_strings
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __param

/sys/module/mbcache:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/mbcache/holders:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 ext3 -> ../../ext3

/sys/module/mbcache/notes:
total 0

/sys/module/mbcache/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __kcrctab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab_strings

/sys/module/mousedev:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/mousedev/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 xres
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 yres
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 tap_time

/sys/module/pcspkr:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 drivers
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/pcspkr/drivers:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 platform:pcspkr -> ../../../bus/platform/drivers/pcspkr

/sys/module/pcspkr/holders:
total 0

/sys/module/pcspkr/notes:
total 0

/sys/module/pcspkr/sections:
total 0

/sys/module/tcp_cubic:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/tcp_cubic/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 beta
-r--r--r-- 1 root root 4096 2008-12-22 09:05 bic_scale
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 fast_convergence
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 initial_ssthresh
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 tcp_friendliness

/sys/module/thermal_sys:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/thermal_sys/holders:
total 0

/sys/module/thermal_sys/notes:
total 0

/sys/module/thermal_sys/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __kcrctab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ksymtab_strings

/sys/module/xen_blkfront:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 drivers
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/xen_blkfront/drivers:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 xen:vbd -> ../../../bus/xen/drivers/vbd

/sys/module/xen_blkfront/holders:
total 0

/sys/module/xen_blkfront/notes:
total 0

/sys/module/xen_blkfront/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __bug_table
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __ex_table

/sys/module/xen_netfront:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 refcnt
drwxr-xr-x 2 root root    0 2008-12-17 22:08 drivers
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
-r--r--r-- 1 root root 4096 2008-12-17 22:08 initstate
drwxr-xr-x 2 root root    0 2008-12-17 22:08 notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 sections

/sys/module/xen_netfront/drivers:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 xen:vif -> ../../../bus/xen/drivers/vif

/sys/module/xen_netfront/holders:
total 0

/sys/module/xen_netfront/notes:
total 0

/sys/module/xen_netfront/sections:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 __bug_table

/sys/module/acpi:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/acpi/parameters:
total 0
-r--r--r-- 1 root root 4096 2008-12-17 22:08 acpica_version

/sys/module/aerdriver:
total 0

/sys/module/capability:
total 0

/sys/module/core:
total 0

/sys/module/keyboard:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/keyboard/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 brl_timeout
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 brl_nbchords

/sys/module/mtrr:
total 0

/sys/module/printk:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/printk/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 time

/sys/module/rcuclassic:
total 0

/sys/module/spurious:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/spurious/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 noirqdebug
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 irqfixup

/sys/module/vt:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 parameters

/sys/module/vt/parameters:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 default_blu
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 default_grn
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 default_red
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 default_utf8
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 italic
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 underline

/sys/module/xen_fbfront:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 drivers

/sys/module/xen_fbfront/drivers:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 xen:vfb -> ../../../bus/xen/drivers/vfb

/sys/fs:
total 0

/sys/block:
total 0
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop7
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop6
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop5
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop4
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop3
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop2
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop1
drwxr-xr-x 5 root root 0 2008-12-17 22:05 loop0
drwxr-xr-x 9 root root 0 2008-12-17 22:05 xvda
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram15
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram10
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram11
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram12
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram13
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram14
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram7
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram8
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram9
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram0
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram1
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram2
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram3
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram4
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram5
drwxr-xr-x 5 root root 0 2008-12-17 22:05 ram6

/sys/block/loop7:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:7
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop7/holders:
total 0

/sys/block/loop7/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop7/slaves:
total 0

/sys/block/loop6:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:6
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop6/holders:
total 0

/sys/block/loop6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop6/slaves:
total 0

/sys/block/loop5:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:5
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop5/holders:
total 0

/sys/block/loop5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop5/slaves:
total 0

/sys/block/loop4:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:4
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop4/holders:
total 0

/sys/block/loop4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop4/slaves:
total 0

/sys/block/loop3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:3
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop3/holders:
total 0

/sys/block/loop3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop3/slaves:
total 0

/sys/block/loop2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:2
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop2/holders:
total 0

/sys/block/loop2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop2/slaves:
total 0

/sys/block/loop1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:1
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop1/holders:
total 0

/sys/block/loop1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop1/slaves:
total 0

/sys/block/loop0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 capability
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
-r--r--r-- 1 root root 4096 2008-12-22 09:05 range
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../block
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 bdi -> ../../class/bdi/7:0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 slaves
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/loop0/holders:
total 0

/sys/block/loop0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/loop0/slaves:
total 0

/sys/block/xvda:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/202:0
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
drwxr-xr-x 3 root root    0 2008-12-17 22:05 queue
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
drwxr-xr-x 4 root root    0 2008-12-17 22:05 xvda5
drwxr-xr-x 4 root root    0 2008-12-17 22:05 xvda2
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
drwxr-xr-x 4 root root    0 2008-12-17 22:05 xvda1
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../devices/vbd-51712
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable

/sys/block/xvda/queue:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 hw_sector_size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 max_hw_sectors_kb
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_sectors_kb
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 nomerges
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 scheduler
drwxr-xr-x 2 root root    0 2008-12-17 22:08 iosched
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 nr_requests

/sys/block/xvda/queue/iosched:
total 0

/sys/block/xvda/holders:
total 0

/sys/block/xvda/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/xvda/slaves:
total 0

/sys/block/xvda/xvda5:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 start
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../../block
drwxr-xr-x 2 root root    0 2008-12-17 22:08 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev

/sys/block/xvda/xvda5/holders:
total 0

/sys/block/xvda/xvda5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/xvda/xvda2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 start
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power

/sys/block/xvda/xvda2/holders:
total 0

/sys/block/xvda/xvda2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/xvda/xvda1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 start
-r--r--r-- 1 root root 4096 2008-12-22 09:05 stat
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power

/sys/block/xvda/xvda1/holders:
total 0

/sys/block/xvda/xvda1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram15:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:15
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram15/holders:
total 0

/sys/block/ram15/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram15/slaves:
total 0

/sys/block/ram10:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:10
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram10/holders:
total 0

/sys/block/ram10/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram10/slaves:
total 0

/sys/block/ram11:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:11
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram11/holders:
total 0

/sys/block/ram11/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram11/slaves:
total 0

/sys/block/ram12:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:12
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram12/holders:
total 0

/sys/block/ram12/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram12/slaves:
total 0

/sys/block/ram13:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:13
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram13/holders:
total 0

/sys/block/ram13/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram13/slaves:
total 0

/sys/block/ram14:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:14
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram14/holders:
total 0

/sys/block/ram14/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram14/slaves:
total 0

/sys/block/ram7:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:7
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram7/holders:
total 0

/sys/block/ram7/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram7/slaves:
total 0

/sys/block/ram8:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:8
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram8/holders:
total 0

/sys/block/ram8/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram8/slaves:
total 0

/sys/block/ram9:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:9
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram9/holders:
total 0

/sys/block/ram9/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram9/slaves:
total 0

/sys/block/ram0:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:0
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram0/holders:
total 0

/sys/block/ram0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram0/slaves:
total 0

/sys/block/ram1:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:1
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram1/holders:
total 0

/sys/block/ram1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram1/slaves:
total 0

/sys/block/ram2:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:2
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram2/holders:
total 0

/sys/block/ram2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram2/slaves:
total 0

/sys/block/ram3:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:3
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram3/holders:
total 0

/sys/block/ram3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram3/slaves:
total 0

/sys/block/ram4:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:4
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram4/holders:
total 0

/sys/block/ram4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram4/slaves:
total 0

/sys/block/ram5:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:5
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram5/holders:
total 0

/sys/block/ram5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram5/slaves:
total 0

/sys/block/ram6:
total 0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 bdi -> ../../class/bdi/1:6
-r--r--r-- 1 root root 4096 2008-12-17 22:05 capability
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
drwxr-xr-x 2 root root    0 2008-12-17 22:05 holders
drwxr-xr-x 2 root root    0 2008-12-17 22:05 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 range
-r--r--r-- 1 root root 4096 2008-12-17 22:05 removable
-r--r--r-- 1 root root 4096 2008-12-17 22:05 size
drwxr-xr-x 2 root root    0 2008-12-17 22:05 slaves
-r--r--r-- 1 root root 4096 2008-12-17 22:05 stat
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../block
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/block/ram6/holders:
total 0

/sys/block/ram6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/block/ram6/slaves:
total 0

/sys/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 disk
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 image_size
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 state
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 resume

/sys/bus:
total 0
drwxr-xr-x 4 root root 0 2008-12-17 22:05 isa
drwxr-xr-x 4 root root 0 2008-12-17 22:05 pci
drwxr-xr-x 4 root root 0 2008-12-17 22:05 pci_express
drwxr-xr-x 4 root root 0 2008-12-17 22:05 platform
drwxr-xr-x 4 root root 0 2008-12-17 22:05 pnp
drwxr-xr-x 4 root root 0 2008-12-17 22:05 serio
drwxr-xr-x 4 root root 0 2008-12-17 22:05 spi
drwxr-xr-x 4 root root 0 2008-12-17 22:05 xen

/sys/bus/isa:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
drwxr-xr-x 2 root root    0 2008-12-17 22:05 drivers
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/isa/devices:
total 0

/sys/bus/isa/drivers:
total 0

/sys/bus/pci:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
drwxr-xr-x 4 root root    0 2008-12-17 22:05 drivers
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/pci/devices:
total 0

/sys/bus/pci/drivers:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:05 pcieport-driver
drwxr-xr-x 2 root root 0 2008-12-17 22:05 serial

/sys/bus/pci/drivers/pcieport-driver:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 new_id
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/pci/drivers/serial:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 new_id
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/pci_express:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
drwxr-xr-x 3 root root    0 2008-12-17 22:05 drivers
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/pci_express/devices:
total 0

/sys/bus/pci_express/drivers:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:05 aer

/sys/bus/pci_express/drivers/aer:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/platform:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 5 root root    0 2008-12-17 22:05 drivers
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/platform/drivers:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 pcspkr
drwxr-xr-x 2 root root 0 2008-12-17 22:05 serial8250
drwxr-xr-x 2 root root 0 2008-12-17 22:05 vesafb

/sys/bus/platform/drivers/pcspkr:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 module -> ../../../../module/pcspkr
--w------- 1 root root 4096 2008-12-22 09:05 uevent
--w------- 1 root root 4096 2008-12-22 09:05 unbind
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 pcspkr -> ../../../../devices/platform/pcspkr

/sys/bus/platform/drivers/serial8250:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 serial8250 -> ../../../../devices/platform/serial8250
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/platform/drivers/vesafb:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/platform/devices:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 pcspkr -> ../../../devices/platform/pcspkr
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 rtc_cmos -> ../../../devices/platform/rtc_cmos
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 serial8250 -> ../../../devices/platform/serial8250
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 vesafb.0 -> ../../../devices/platform/vesafb.0

/sys/bus/pnp:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
drwxr-xr-x 4 root root    0 2008-12-17 22:05 drivers
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/pnp/devices:
total 0

/sys/bus/pnp/drivers:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:05 serial
drwxr-xr-x 2 root root 0 2008-12-17 22:05 system

/sys/bus/pnp/drivers/serial:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/pnp/drivers/system:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/serio:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
drwxr-xr-x 3 root root    0 2008-12-17 22:05 drivers
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/serio/devices:
total 0

/sys/bus/serio/drivers:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:05 atkbd

/sys/bus/serio/drivers/atkbd:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 bind_mode
-r--r--r-- 1 root root 4096 2008-12-22 09:05 description
--w------- 1 root root 4096 2008-12-22 09:05 unbind
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 module -> ../../../../module/atkbd
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/spi:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
drwxr-xr-x 2 root root    0 2008-12-17 22:05 drivers
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/spi/devices:
total 0

/sys/bus/spi/drivers:
total 0

/sys/bus/xen:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 drivers_autoprobe
--w------- 1 root root 4096 2008-12-17 22:08 drivers_probe
drwxr-xr-x 6 root root    0 2008-12-17 22:05 drivers
drwxr-xr-x 2 root root    0 2008-12-17 22:05 devices
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/xen/drivers:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 vif
drwxr-xr-x 2 root root 0 2008-12-17 22:05 vbd
drwxr-xr-x 2 root root 0 2008-12-17 22:05 vfb
drwxr-xr-x 2 root root 0 2008-12-17 22:05 vkbd

/sys/bus/xen/drivers/vif:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 module -> ../../../../module/xen_netfront
--w------- 1 root root 4096 2008-12-22 09:05 uevent
--w------- 1 root root 4096 2008-12-22 09:05 unbind
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 vif-0 -> ../../../../devices/vif-0

/sys/bus/xen/drivers/vbd:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 module -> ../../../../module/xen_blkfront
--w------- 1 root root 4096 2008-12-22 09:05 unbind
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 vbd-51712 -> ../../../../devices/vbd-51712
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/xen/drivers/vfb:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 module -> ../../../../module/xen_fbfront
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/xen/drivers/vkbd:
total 0
--w------- 1 root root 4096 2008-12-22 09:05 bind
--w------- 1 root root 4096 2008-12-22 09:05 unbind
--w------- 1 root root 4096 2008-12-17 22:05 uevent

/sys/bus/xen/devices:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 console-0 -> ../../../devices/console-0
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 vbd-51712 -> ../../../devices/vbd-51712
lrwxrwxrwx 1 root root 0 2008-12-17 22:05 vif-0 -> ../../../devices/vif-0

/sys/class:
total 0
drwxr-xr-x 16 root root 0 2008-12-17 22:05 vc
drwxr-xr-x 28 root root 0 2008-12-17 22:05 bdi
drwxr-xr-x  4 root root 0 2008-12-17 22:05 input
drwxr-xr-x  4 root root 0 2008-12-17 22:05 net
drwxr-xr-x  2 root root 0 2008-12-17 22:05 bsg
drwxr-xr-x  2 root root 0 2008-12-17 22:05 thermal
drwxr-xr-x  2 root root 0 2008-12-17 22:05 backlight
drwxr-xr-x  3 root root 0 2008-12-17 22:05 graphics
drwxr-xr-x  2 root root 0 2008-12-17 22:05 hwmon
drwxr-xr-x 11 root root 0 2008-12-17 22:05 mem
drwxr-xr-x  7 root root 0 2008-12-17 22:05 misc
drwxr-xr-x  2 root root 0 2008-12-17 22:05 pci_bus
drwxr-xr-x  2 root root 0 2008-12-17 22:05 power_supply
drwxr-xr-x  2 root root 0 2008-12-17 22:05 rtc
drwxr-xr-x  2 root root 0 2008-12-17 22:05 spi_master
drwxr-xr-x 81 root root 0 2008-12-17 22:05 tty
drwxr-xr-x  3 root root 0 2008-12-17 22:05 vtconsole

/sys/class/vc:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs6
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa6
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs5
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa1
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa5
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs1
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs4
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa4
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa3
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs3
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa2
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs2
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcs
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vcsa

/sys/class/vc/vcs6:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcs6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa6:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcsa6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcs5:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcs5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcsa1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa5:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcsa5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcs1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcs1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcs4:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcs4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa4:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcsa4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcsa3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcs3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcs3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcsa2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcs2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/vc/vcs2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcs:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/vc/vcs/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vc/vcsa:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/vc/vcsa/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:0
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:1
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:2
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:3
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:4
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:5
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:6
drwxr-xr-x 3 root root 0 2008-12-17 22:08 7:7
drwxr-xr-x 3 root root 0 2008-12-17 22:05 202:0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:1
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:10
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:11
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:12
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:13
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:14
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:15
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:2
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:3
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:4
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:5
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:6
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:7
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:8
drwxr-xr-x 3 root root 0 2008-12-17 22:05 1:9
drwxr-xr-x 3 root root 0 2008-12-17 22:05 default

/sys/class/bdi/7:0:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:1:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:2:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:3:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:4:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:5:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:6:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/7:7:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/class/bdi/7:7/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/202:0:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/202:0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:0:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:1:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:10:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:10/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:11:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:11/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:12:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:12/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:13:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:13/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:14:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:14/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:15:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:15/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:2:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:3:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:4:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:5:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:6:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:7:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:7/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:8:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:8/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/1:9:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/1:9/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/bdi/default:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 max_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 min_ratio
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 read_ahead_kb
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bdi
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/bdi/default/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/input:
total 0
lrwxrwxrwx 1 root root 0 2008-12-17 22:08 event0 -> input0/event0
drwxr-xr-x 6 root root 0 2008-12-17 22:05 input0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 mice

/sys/class/input/input0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 phys
-r--r--r-- 1 root root 4096 2008-12-22 09:05 uniq
drwxr-xr-x 2 root root    0 2008-12-17 22:08 capabilities
drwxr-xr-x 2 root root    0 2008-12-17 22:08 id
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 input:event0 -> event0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../devices/platform/pcspkr
drwxr-xr-x 3 root root    0 2008-12-17 22:05 event0
-r--r--r-- 1 root root 4096 2008-12-17 22:05 modalias
-r--r--r-- 1 root root 4096 2008-12-17 22:05 name
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../input

/sys/class/input/input0/capabilities:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 abs
-r--r--r-- 1 root root 4096 2008-12-22 09:05 ff
-r--r--r-- 1 root root 4096 2008-12-22 09:05 key
-r--r--r-- 1 root root 4096 2008-12-22 09:05 led
-r--r--r-- 1 root root 4096 2008-12-22 09:05 msc
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rel
-r--r--r-- 1 root root 4096 2008-12-22 09:05 snd
-r--r--r-- 1 root root 4096 2008-12-22 09:05 sw
-r--r--r-- 1 root root 4096 2008-12-17 22:08 ev

/sys/class/input/input0/id:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 product
-r--r--r-- 1 root root 4096 2008-12-22 09:05 vendor
-r--r--r-- 1 root root 4096 2008-12-22 09:05 version
-r--r--r-- 1 root root 4096 2008-12-17 22:08 bustype

/sys/class/input/input0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/input/input0/event0:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../../input
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../../devices/platform/pcspkr
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev

/sys/class/input/input0/event0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/input/mice:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../input
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-r--r--r-- 1 root root 4096 2008-12-17 22:05 dev
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/input/mice/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/net:
total 0
drwxr-xr-x 4 root root 0 2008-12-17 22:05 eth0
drwxr-xr-x 4 root root 0 2008-12-17 22:05 lo

/sys/class/net/eth0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 address
-r--r--r-- 1 root root 4096 2008-12-22 09:05 addr_len
-r--r--r-- 1 root root 4096 2008-12-22 09:05 broadcast
-r--r--r-- 1 root root 4096 2008-12-22 09:05 carrier
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev_id
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dormant
-r--r--r-- 1 root root 4096 2008-12-22 09:05 features
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 flags
-r--r--r-- 1 root root 4096 2008-12-22 09:05 ifindex
-r--r--r-- 1 root root 4096 2008-12-22 09:05 iflink
-r--r--r-- 1 root root 4096 2008-12-22 09:05 link_mode
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 mtu
-r--r--r-- 1 root root 4096 2008-12-22 09:05 operstate
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rxbuf_cur
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 rxbuf_max
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../net
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 tx_queue_len
-r--r--r-- 1 root root 4096 2008-12-22 09:05 type
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 rxbuf_min
drwxr-xr-x 2 root root    0 2008-12-17 22:08 statistics
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../devices/vif-0

/sys/class/net/eth0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/net/eth0/statistics:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 collisions
-r--r--r-- 1 root root 4096 2008-12-22 09:05 multicast
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_bytes
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_compressed
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_crc_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_dropped
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_fifo_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_frame_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_length_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_missed_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_over_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_aborted_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_bytes
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_carrier_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_compressed
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_dropped
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_fifo_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_heartbeat_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_packets
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_window_errors
-r--r--r-- 1 root root 4096 2008-12-17 22:08 rx_packets

/sys/class/net/lo:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 address
-r--r--r-- 1 root root 4096 2008-12-22 09:05 addr_len
-r--r--r-- 1 root root 4096 2008-12-22 09:05 broadcast
-r--r--r-- 1 root root 4096 2008-12-22 09:05 carrier
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev_id
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dormant
-r--r--r-- 1 root root 4096 2008-12-22 09:05 features
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 flags
-r--r--r-- 1 root root 4096 2008-12-22 09:05 ifindex
-r--r--r-- 1 root root 4096 2008-12-22 09:05 iflink
-r--r--r-- 1 root root 4096 2008-12-22 09:05 link_mode
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 mtu
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../net
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 tx_queue_len
-r--r--r-- 1 root root 4096 2008-12-22 09:05 type
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
drwxr-xr-x 2 root root    0 2008-12-17 22:08 statistics
-r--r--r-- 1 root root 4096 2008-12-17 22:05 operstate
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/net/lo/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/net/lo/statistics:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 collisions
-r--r--r-- 1 root root 4096 2008-12-22 09:05 multicast
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_bytes
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_compressed
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_crc_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_dropped
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_fifo_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_frame_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_length_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_missed_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 rx_over_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_aborted_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_bytes
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_carrier_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_compressed
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_dropped
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_fifo_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_heartbeat_errors
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_packets
-r--r--r-- 1 root root 4096 2008-12-22 09:05 tx_window_errors
-r--r--r-- 1 root root 4096 2008-12-17 22:08 rx_packets

/sys/class/bsg:
total 0

/sys/class/thermal:
total 0

/sys/class/backlight:
total 0

/sys/class/graphics:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 fbcon

/sys/class/graphics/fbcon:
total 0
-rw-r--r-- 1 root root 4096 2008-12-22 09:05 cursor_blink
--w------- 1 root root 4096 2008-12-22 09:05 rotate_all
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../graphics
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 rotate
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/graphics/fbcon/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/hwmon:
total 0

/sys/class/mem:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 kmsg
drwxr-xr-x 3 root root 0 2008-12-17 22:05 urandom
drwxr-xr-x 3 root root 0 2008-12-17 22:05 full
drwxr-xr-x 3 root root 0 2008-12-17 22:05 kmem
drwxr-xr-x 3 root root 0 2008-12-17 22:05 mem
drwxr-xr-x 3 root root 0 2008-12-17 22:05 null
drwxr-xr-x 3 root root 0 2008-12-17 22:05 port
drwxr-xr-x 3 root root 0 2008-12-17 22:05 random
drwxr-xr-x 3 root root 0 2008-12-17 22:05 zero

/sys/class/mem/kmsg:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/kmsg/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/urandom:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/urandom/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/full:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/full/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/kmem:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/kmem/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/mem:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/mem/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/null:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/null/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/port:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/port/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/random:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/random/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/mem/zero:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../mem
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/mem/zero/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/misc:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 cpu_dma_latency
drwxr-xr-x 3 root root 0 2008-12-17 22:05 network_latency
drwxr-xr-x 3 root root 0 2008-12-17 22:05 network_throughput
drwxr-xr-x 3 root root 0 2008-12-17 22:05 psaux
drwxr-xr-x 3 root root 0 2008-12-17 22:05 snapshot

/sys/class/misc/cpu_dma_latency:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../misc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/misc/cpu_dma_latency/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/misc/network_latency:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../misc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/misc/network_latency/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/misc/network_throughput:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../misc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/misc/network_throughput/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/misc/psaux:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../misc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/misc/psaux/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/misc/snapshot:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../misc
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/misc/snapshot/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/pci_bus:
total 0

/sys/class/power_supply:
total 0

/sys/class/rtc:
total 0

/sys/class/spi_master:
total 0

/sys/class/tty:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 console
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc1
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc2
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc3
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc4
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc5
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc6
drwxr-xr-x 3 root root 0 2008-12-17 22:05 hvc7
drwxr-xr-x 3 root root 0 2008-12-17 22:05 ptmx
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty1
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty10
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty11
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty12
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty13
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty14
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty15
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty16
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty17
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty18
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty19
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty2
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty20
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty21
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty22
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty23
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty24
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty25
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty26
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty27
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty28
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty29
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty3
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty30
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty31
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty32
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty33
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty34
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty35
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty36
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty37
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty38
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty39
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty4
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty40
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty41
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty42
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty43
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty44
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty45
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty46
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty47
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty48
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty49
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty5
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty50
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty51
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty52
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty53
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty54
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty55
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty56
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty57
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty58
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty59
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty6
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty60
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty61
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty62
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty63
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty7
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty8
drwxr-xr-x 3 root root 0 2008-12-17 22:05 tty9
drwxr-xr-x 3 root root 0 2008-12-17 22:05 ttyS0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 ttyS1
drwxr-xr-x 3 root root 0 2008-12-17 22:05 ttyS2
drwxr-xr-x 3 root root 0 2008-12-17 22:05 ttyS3

/sys/class/tty/console:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/console/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc4:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc5:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc6:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/hvc7:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/hvc7/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/ptmx:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/ptmx/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty10:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty10/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty11:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty11/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty12:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty12/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty13:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty13/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty14:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty14/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty15:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty15/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty16:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty16/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty17:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty17/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty18:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty18/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty19:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty19/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty20:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty20/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty21:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty21/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty22:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty22/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty23:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty23/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty24:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty24/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty25:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty25/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty26:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty26/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty27:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty27/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty28:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty28/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty29:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty29/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty30:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty30/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty31:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty31/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty32:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty32/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty33:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty33/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty34:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty34/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty35:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty35/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty36:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty36/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty37:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty37/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty38:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty38/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty39:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty39/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty4:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty4/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty40:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty40/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty41:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty41/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty42:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty42/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty43:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty43/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty44:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty44/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty45:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty45/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty46:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty46/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty47:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty47/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty48:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty48/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty49:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty49/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty5:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty5/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty50:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty50/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty51:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty51/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty52:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty52/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty53:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty53/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty54:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty54/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty55:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty55/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty56:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty56/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty57:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty57/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty58:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty58/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty59:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty59/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty6:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty6/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty60:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty60/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty61:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty61/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty62:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty62/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty63:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty63/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty7:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty7/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty8:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty8/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/tty9:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/tty9/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/ttyS0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../devices/platform/serial8250
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/ttyS0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/ttyS1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../devices/platform/serial8250
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/ttyS1/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/ttyS2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../devices/platform/serial8250
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/ttyS2/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/tty/ttyS3:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 dev
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../tty
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 device -> ../../../devices/platform/serial8250
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/tty/ttyS3/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/class/vtconsole:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vtcon0

/sys/class/vtconsole/vtcon0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 name
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../vtconsole
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 bind
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/class/vtconsole/vtcon0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:08 isa
drwxr-xr-x 9 root root 0 2008-12-17 22:08 system
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vif-0
drwxr-xr-x 3 root root 0 2008-12-17 22:05 vbd-51712
drwxr-xr-x 3 root root 0 2008-12-17 22:05 console-0
drwxr-xr-x 7 root root 0 2008-12-17 22:05 platform

/sys/devices/isa:
total 0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent

/sys/devices/isa/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/system:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:08 clocksource
drwxr-xr-x 4 root root 0 2008-12-17 22:08 cpu
drwxr-xr-x 3 root root 0 2008-12-17 22:08 i8237
drwxr-xr-x 3 root root 0 2008-12-17 22:08 i8259
drwxr-xr-x 2 root root 0 2008-12-17 22:08 ioapic
drwxr-xr-x 3 root root 0 2008-12-17 22:08 memory
drwxr-xr-x 3 root root 0 2008-12-17 22:08 timekeeping

/sys/devices/system/clocksource:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 clocksource0

/sys/devices/system/clocksource/clocksource0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 available_clocksource
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 current_clocksource

/sys/devices/system/cpu:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 possible
-r--r--r-- 1 root root 4096 2008-12-22 09:05 present
drwxr-xr-x 4 root root    0 2008-12-17 22:08 cpu0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 cpuidle
-r--r--r-- 1 root root 4096 2008-12-17 22:08 online

/sys/devices/system/cpu/cpu0:
total 0
drwxr-xr-x 5 root root    0 2008-12-17 22:08 cache
-r-------- 1 root root 4096 2008-12-17 22:08 crash_notes
drwxr-xr-x 2 root root    0 2008-12-17 22:08 topology

/sys/devices/system/cpu/cpu0/cache:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 index0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 index1
drwxr-xr-x 2 root root 0 2008-12-17 22:08 index2

/sys/devices/system/cpu/cpu0/cache/index0:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 coherency_line_size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 level
-r--r--r-- 1 root root 4096 2008-12-22 09:05 number_of_sets
-r--r--r-- 1 root root 4096 2008-12-22 09:05 physical_line_partition
-r--r--r-- 1 root root 4096 2008-12-22 09:05 shared_cpu_list
-r--r--r-- 1 root root 4096 2008-12-22 09:05 shared_cpu_map
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 ways_of_associativity
-r--r--r-- 1 root root 4096 2008-12-17 22:08 type

/sys/devices/system/cpu/cpu0/cache/index1:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 coherency_line_size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 level
-r--r--r-- 1 root root 4096 2008-12-22 09:05 number_of_sets
-r--r--r-- 1 root root 4096 2008-12-22 09:05 physical_line_partition
-r--r--r-- 1 root root 4096 2008-12-22 09:05 shared_cpu_list
-r--r--r-- 1 root root 4096 2008-12-22 09:05 shared_cpu_map
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 ways_of_associativity
-r--r--r-- 1 root root 4096 2008-12-17 22:08 type

/sys/devices/system/cpu/cpu0/cache/index2:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 coherency_line_size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 level
-r--r--r-- 1 root root 4096 2008-12-22 09:05 number_of_sets
-r--r--r-- 1 root root 4096 2008-12-22 09:05 physical_line_partition
-r--r--r-- 1 root root 4096 2008-12-22 09:05 shared_cpu_list
-r--r--r-- 1 root root 4096 2008-12-22 09:05 shared_cpu_map
-r--r--r-- 1 root root 4096 2008-12-22 09:05 size
-r--r--r-- 1 root root 4096 2008-12-22 09:05 ways_of_associativity
-r--r--r-- 1 root root 4096 2008-12-17 22:08 type

/sys/devices/system/cpu/cpu0/topology:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 core_id
-r--r--r-- 1 root root 4096 2008-12-22 09:05 core_siblings
-r--r--r-- 1 root root 4096 2008-12-22 09:05 core_siblings_list
-r--r--r-- 1 root root 4096 2008-12-22 09:05 thread_siblings
-r--r--r-- 1 root root 4096 2008-12-22 09:05 thread_siblings_list
-r--r--r-- 1 root root 4096 2008-12-17 22:08 physical_package_id

/sys/devices/system/cpu/cpuidle:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 current_governor_ro
-r--r--r-- 1 root root 4096 2008-12-17 22:08 current_driver

/sys/devices/system/i8237:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 i82370

/sys/devices/system/i8237/i82370:
total 0

/sys/devices/system/i8259:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 i82590

/sys/devices/system/i8259/i82590:
total 0

/sys/devices/system/ioapic:
total 0

/sys/devices/system/memory:
total 0
drwxr-xr-x 3 root root 0 2008-12-17 22:08 memory0

/sys/devices/system/memory/memory0:
total 0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 info
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 target_kb

/sys/devices/system/memory/memory0/info:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 driver_kb
-r--r--r-- 1 root root 4096 2008-12-22 09:05 hard_limit_kb
-r--r--r-- 1 root root 4096 2008-12-22 09:05 high_kb
-r--r--r-- 1 root root 4096 2008-12-22 09:05 low_kb
-r--r--r-- 1 root root 4096 2008-12-17 22:08 current_kb

/sys/devices/system/timekeeping:
total 0
drwxr-xr-x 2 root root 0 2008-12-17 22:08 timekeeping0

/sys/devices/system/timekeeping/timekeeping0:
total 0

/sys/devices/vif-0:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../bus/xen
-r--r--r-- 1 root root 4096 2008-12-22 09:05 devtype
-r--r--r-- 1 root root 4096 2008-12-22 09:05 modalias
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 net:eth0 -> ../../class/net/eth0
-r--r--r-- 1 root root 4096 2008-12-17 22:08 nodename
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 driver -> ../../bus/xen/drivers/vif
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../bus/xen
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/vif-0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/vbd-51712:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 block:xvda -> ../../block/xvda
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../bus/xen
-r--r--r-- 1 root root 4096 2008-12-22 09:05 devtype
-r--r--r-- 1 root root 4096 2008-12-17 22:08 modalias
-r--r--r-- 1 root root 4096 2008-12-17 22:08 nodename
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 driver -> ../../bus/xen/drivers/vbd
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../bus/xen
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/vbd-51712/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/console-0:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../bus/xen
-r--r--r-- 1 root root 4096 2008-12-22 09:05 devtype
-r--r--r-- 1 root root 4096 2008-12-22 09:05 modalias
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../bus/xen
-r--r--r-- 1 root root 4096 2008-12-17 22:08 nodename
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/console-0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/platform:
total 0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 uevent
drwxr-xr-x 3 root root    0 2008-12-17 22:05 pcspkr
drwxr-xr-x 3 root root    0 2008-12-17 22:05 rtc_cmos
drwxr-xr-x 3 root root    0 2008-12-17 22:05 serial8250
drwxr-xr-x 3 root root    0 2008-12-17 22:05 vesafb.0

/sys/devices/platform/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/platform/pcspkr:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../../bus/platform
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 input:input0 -> ../../../class/input/input0
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 driver -> ../../../bus/platform/drivers/pcspkr
-r--r--r-- 1 root root 4096 2008-12-17 22:05 modalias
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../../bus/platform
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/platform/pcspkr/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/platform/rtc_cmos:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../../bus/platform
-r--r--r-- 1 root root 4096 2008-12-22 09:05 modalias
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../../bus/platform
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/platform/rtc_cmos/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/platform/serial8250:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../../bus/platform
-r--r--r-- 1 root root 4096 2008-12-22 09:05 modalias
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 tty:ttyS1 -> ../../../class/tty/ttyS1
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 tty:ttyS2 -> ../../../class/tty/ttyS2
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 tty:ttyS3 -> ../../../class/tty/ttyS3
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
lrwxrwxrwx 1 root root    0 2008-12-17 22:08 tty:ttyS0 -> ../../../class/tty/ttyS0
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 driver -> ../../../bus/platform/drivers/serial8250
lrwxrwxrwx 1 root root    0 2008-12-17 22:05 subsystem -> ../../../bus/platform
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/platform/serial8250/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/devices/platform/vesafb.0:
total 0
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 bus -> ../../../bus/platform
-r--r--r-- 1 root root 4096 2008-12-22 09:05 modalias
lrwxrwxrwx 1 root root    0 2008-12-22 09:05 subsystem -> ../../../bus/platform
drwxr-xr-x 2 root root    0 2008-12-17 22:08 power
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent

/sys/devices/platform/vesafb.0/power:
total 0
-rw-r--r-- 1 root root 4096 2008-12-17 22:08 wakeup

/sys/kernel:
total 0
-r--r--r-- 1 root root 4096 2008-12-22 09:05 kexec_crash_loaded
-r--r--r-- 1 root root 4096 2008-12-22 09:05 kexec_loaded
-r--r--r-- 1 root root  340 2008-12-22 09:05 notes
-r--r--r-- 1 root root 4096 2008-12-22 09:05 vmcoreinfo
drwxr-xr-x 2 root root    0 2008-12-17 22:08 debug
drwxr-xr-x 2 root root    0 2008-12-17 22:08 security
-rw-r--r-- 1 root root 4096 2008-12-17 22:05 uevent_helper
-r--r--r-- 1 root root 4096 2008-12-17 22:05 uevent_seqnum

/sys/kernel/debug:
total 0

/sys/kernel/security:
total 0

Attachment: signature.asc
Description: This is a digitally signed message part


Reply to: