diff options
author | Francois Pons <fpons@mandriva.com> | 2000-05-29 17:16:56 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2000-05-29 17:16:56 +0000 |
commit | d72ffade4e086fa3eb0f7904a4141dea3ad91705 (patch) | |
tree | bdbc9fce22747c2a19f980b087c2b5f0a3ae3618 /perl-install/commands.pm | |
parent | 436a081d985d376060908b1db436a6ad2691d593 (diff) | |
download | drakx-d72ffade4e086fa3eb0f7904a4141dea3ad91705.tar drakx-d72ffade4e086fa3eb0f7904a4141dea3ad91705.tar.gz drakx-d72ffade4e086fa3eb0f7904a4141dea3ad91705.tar.bz2 drakx-d72ffade4e086fa3eb0f7904a4141dea3ad91705.tar.xz drakx-d72ffade4e086fa3eb0f7904a4141dea3ad91705.zip |
*** empty log message ***
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 { |