diff options
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r-- | perl-install/commands.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm index 1bc534897..c6a784c93 100644 --- a/perl-install/commands.pm +++ b/perl-install/commands.pm @@ -3,7 +3,7 @@ #- true, false, cat, which, dirname, basename, rmdir, lsmod, grep, tr, #- mount, umount, mkdir, mknod, ln, rm, chmod, chown, mkswap, swapon, #- swapoff, ls, cp, ps, dd, head, tail, strings, hexdump, more, insmod, -#- modprobe, route, df, kill, lspci, dmesg, sort, du, +#- modprobe, route, df, kill, lspci, lssbus, dmesg, sort, du, #-######################################################################## package commands; @@ -517,6 +517,10 @@ sub lspci { require 'pci_probing/main.pm'; print join "\n", pci_probing::main::list (), ''; } +sub lssbus { + require 'sbus_probing/main.pm'; + print join "\n", sbus_probing::main::list (), ''; +} sub dmesg { print cat_("/tmp/syslog"); } sub sort { |