summaryrefslogtreecommitdiffstats
path: root/dkms-modules-info/2.6.28-server-3mnb
diff options
context:
space:
mode:
authorMandrake <mandrake@mandriva.com>2009-01-16 03:18:41 +0000
committerMandrake <mandrake@mandriva.com>2009-01-16 03:18:41 +0000
commit73400ed9b785924b760cb3d8f87ffcaab6080788 (patch)
treecfce5ea441513872317c9aac55d1010a9bd2b984 /dkms-modules-info/2.6.28-server-3mnb
parent87bf2b1c700486e83503f3e80f6466cb0486b5d6 (diff)
downloadldetect-lst-73400ed9b785924b760cb3d8f87ffcaab6080788.tar
ldetect-lst-73400ed9b785924b760cb3d8f87ffcaab6080788.tar.gz
ldetect-lst-73400ed9b785924b760cb3d8f87ffcaab6080788.tar.bz2
ldetect-lst-73400ed9b785924b760cb3d8f87ffcaab6080788.tar.xz
ldetect-lst-73400ed9b785924b760cb3d8f87ffcaab6080788.zip
add dkms info for opencbm with kernel 2.6.28-server-3mnb
Diffstat (limited to 'dkms-modules-info/2.6.28-server-3mnb')
-rw-r--r--dkms-modules-info/2.6.28-server-3mnb/cbm.alias1
-rw-r--r--dkms-modules-info/2.6.28-server-3mnb/cbm.description1
2 files changed, 2 insertions, 0 deletions
diff --git a/dkms-modules-info/2.6.28-server-3mnb/cbm.alias b/dkms-modules-info/2.6.28-server-3mnb/cbm.alias
new file mode 100644
index 00000000..8918bacc
--- /dev/null
+++ b/dkms-modules-info/2.6.28-server-3mnb/cbm.alias
@@ -0,0 +1 @@
+char-major-10-177
diff --git a/dkms-modules-info/2.6.28-server-3mnb/cbm.description b/dkms-modules-info/2.6.28-server-3mnb/cbm.description
new file mode 100644
index 00000000..e6cfb9a3
--- /dev/null
+++ b/dkms-modules-info/2.6.28-server-3mnb/cbm.description
@@ -0,0 +1 @@
+Serial CBM bus driver module
# published by the Free Software Foundation. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # #***************************************************************************** # # $Id$ use strict; use MDK::Common::Func 'any'; use lib qw(/usr/lib/libDrakX); use common; BEGIN { $::no_global_argv_parsing = 1 } use Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(init warn_about_user_mode $changelog_first $default_list_mode %rpmdrake_options $MODE); BEGIN { #- we want to run this code before the Gtk->init of the use-my_gtk my $basename = sub { local $_ = shift; s|/*\s*$||; s|.*/||; $_ }; any { /^--?h/ } @ARGV and do { printf join("\n", N("Usage: %s [OPTION]...", $basename->($0)), N(" --auto assume default answers to questions"), N(" --changelog-first display changelog before filelist in the description window"), N(" --media=medium1,.. limit to given media"), N(" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"), N(" --mode=MODE set mode (install (default), remove, update)"), N(" --justdb update the database, but do not modify the filesystem"), N(" --no-confirmation don't ask first confirmation question in update mode"), N(" --no-media-update don't update media at startup"), N(" --no-verify-rpm don't verify packages signatures"), if_($0 !~ /MandrivaUpdate/, N(" --parallel=alias,host be in parallel mode, use \"alias\" group, use \"host\" machine to show needed deps")), N(" --pkg-nosel=pkg1,.. show only these packages"), N(" --pkg-sel=pkg1,.. preselect these packages"), N(" --rpm-root=path use another root for rpm installation"), N(" --urpmi-root use another root for urpmi db & rpm installation"), N(" --root force to run as root") . ' ' . N("(Deprecated)"), N(" --run-as-root force to run as root"), N(" --search=pkg run search for \"pkg\""), chomp_(N(" --version - print this tool's version number. ")), "" ); exit 0; }; } BEGIN { #- for mcc if ("@ARGV" =~ /--embedded (\w+)/) { $::XID = $1; $::isEmbedded = 1; } } use rpmdrake; #- This is needed because text printed by Gtk2 will always be encoded #- in UTF-8; we first check if LC_ALL is defined, because if it is, #- changing only LC_COLLATE will have no effect. use POSIX qw(setlocale LC_ALL LC_COLLATE strftime); use locale; my $collation_locale = $ENV{LC_ALL}; if ($collation_locale) { $collation_locale =~ /UTF-8/ or setlocale(LC_ALL, "$collation_locale.UTF-8"); } else { $collation_locale = setlocale(LC_COLLATE); $collation_locale =~ /UTF-8/ or setlocale(LC_COLLATE, "$collation_locale.UTF-8"); } my $version = 1; our %rpmdrake_options; foreach (@ARGV) { /^-?-(\S+)$/ or next; my $val = $1; if ($val =~ /=/) { my ($name, $values) = split /=/, $val; my @values = split /,/, $values; $rpmdrake_options{$name} = \@values if @values; undef $_; } else { if ($val eq 'version') { print "$0 $version\n"; exit(0); } $rpmdrake_options{$val} = 1; } } foreach my $option (qw(media mode parallel pkg-nosel pkg-sel rpm-root search)) { if (defined $rpmdrake_options{$option} && !ref($rpmdrake_options{$option})) { warn "wrong usage of \"$option\" option!\n"; exit(-1); # too early for my_exit() } } our $MODE = ref $rpmdrake_options{mode} ? $rpmdrake_options{mode}[0] : undef; unless ($MODE) { $MODE = 'install'; $0 =~ m|remove$| and $MODE = 'remove'; $0 =~ m|update$|i and $MODE = 'update'; } our $default_list_mode; $default_list_mode = 'all' if $MODE eq 'install'; if ($MODE eq 'remove') { $default_list_mode = 'installed'; } elsif ($MODE eq 'update') { $default_list_mode = 'all_updates'; } $MODE eq 'update' || $rpmdrake_options{'run-as-root'} || $rpmdrake_options{root} and require_root_capability(); $::noborderWhenEmbedded = 1; our $changelog_first = $changelog_first_config->[0]; $changelog_first = 1 if $rpmdrake_options{'changelog-first'}; sub warn_about_user_mode() { $> and (interactive_msg(N("Running in user mode"), N("You are launching this program as a normal user. You will not be able to perform modifications on the system, but you may still browse the existing database."), yesno => 1, text => { no => N("Cancel"), yes => N("Ok") }) or myexit(0)); } sub init() { if (!$> && !member($MODE, @$already_splashed)) { interactive_msg(N("Welcome"), N("%s Is it ok to continue?", $MODE eq 'remove' ? N("Welcome to the software removal tool! This tool will help you choose which software you want to remove from your computer.") : $MODE eq 'update' ? N("Welcome to %s! This tool will help you choose the updates you want to install on your computer.", $rpmdrake::myname_update) : ($rpmdrake::branded ? N("Welcome to the software installation tool!") : N("Welcome to the software installation tool! Your Mandriva Linux system comes with several thousands of software packages on CDROM or DVD. This tool will help you choose which software you want to install on your computer."))) , yesno => 1) or myexit(-1); push @$already_splashed, $MODE; } if (!$> && !$offered_to_add_sources->[0]) { if (interactive_msg(N("Welcome"), join("\n\n", N("The software installation tool can set up media sources."), N("Do you want to add media sources now?"), ), yesno => 1, ) ) { require Rpmdrake::edit_urpm_sources; Rpmdrake::edit_urpm_sources::easy_add_callback(); } $offered_to_add_sources->[0] = 1; } } 1;