summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_auto_install.pm
Commit message (Expand)AuthorAgeFilesLines
* correctly call errorInStep()Pascal Rigaux2004-08-091-4/+5
* - %modules::conf is no more a global, so many functions need passing $modules...Pascal Rigaux2004-07-211-2/+2
* display the errorPascal Rigaux2004-01-081-1/+2
* drop field {next} in {steps} since it is duplicated in orderedStepsPascal Rigaux2003-10-151-1/+1
* - move call to ->charsetChanged from install_steps_interactive to install_stepsPascal Rigaux2003-09-031-6/+5
* perl_checker adaptations + fixesPascal Rigaux2003-04-241-1/+4
* add a formatErrorPascal Rigaux2003-02-191-1/+1
* perl_checker compliance ("ref" now need parentheses in many case)Pascal Rigaux2003-02-121-2/+2
* language/country selection change:Guillaume Cottenceau2003-02-081-1/+1
* adapt to new category network/gigabit (which used to be in network/main)Pascal Rigaux2003-01-301-1/+1
* configureNetwork step must be non-auto otherwise onlyPascal Rigaux2003-01-161-1/+2
* move install_steps_auto_install_non_interactive::configureNetwork() toPascal Rigaux2003-01-151-6/+5
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-2/+2
* add/remove some spaces to make perl_checker happyPascal Rigaux2002-11-121-1/+1
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-1/+1
* nice message when rebootNeeded in auto_install (otherwise it reboots without ...Pascal Rigaux2002-08-111-0/+7
* adapt to new modules.pmPascal Rigaux2002-07-041-1/+1
* in replay mode, since $o->{interactiveSteps}Guillaume Cottenceau2002-03-071-2/+1
* (enteringStep): do not translate in ja|ko|zhPascal Rigaux2001-09-151-1/+3
* force exitInstall to be non automaticPascal Rigaux2001-09-081-1/+1
* don't have formatPartitions interactive by defaultPascal Rigaux2001-08-221-1/+1
* a hell lot of cleanup/rewrite:Pascal Rigaux2001-08-171-1/+1
* auto_inst enhancementsPascal Rigaux2001-08-131-30/+36
* initial revision for drakautoinstGuillaume Cottenceau2001-08-131-20/+12
* switch to gtk install when interactiveSteps is definedPascal Rigaux2001-08-051-1/+1
* remove bad prototypePascal Rigaux2001-07-311-1/+1
* move to MDK::Common, bool->to_boolPascal Rigaux2001-07-241-1/+1
* fix exit install in graphical auto_install'sPascal Rigaux2001-07-191-3/+2
* based on Michael Brown <mbrown@fensystems.co.uk> patch:Pascal Rigaux2001-07-191-14/+28
* (@graphical_steps): add beforeInstallPackages so that advertisings are therePascal Rigaux2001-03-061-1/+1
* (@graphical_steps): specify which step should be interactivePascal Rigaux2001-02-231-3/+13
* $graphical is now a module variable. Can be changed from everywherePascal Rigaux2001-02-221-3/+1
* (exitInstall): fix messagePascal Rigaux2000-11-201-1/+1
* no_commentPascal Rigaux2000-09-221-1/+1
* no_commentPascal Rigaux2000-09-141-1/+1
* no_commentPascal Rigaux2000-09-131-2/+1
* no_commentPascal Rigaux2000-09-121-1/+1
* *** empty log message ***Francois Pons2000-09-061-3/+1
* no_commentPascal Rigaux2000-09-051-1/+6
* no_commentPascal Rigaux2000-09-041-0/+11
* see changelog. Big changes.damien2000-09-011-1/+4
* no_commentPascal Rigaux2000-08-301-1/+1
* no_commentPascal Rigaux2000-08-211-1/+1
* no_commentPascal Rigaux2000-08-181-1/+1
* no_commentPascal Rigaux2000-08-061-2/+2
* no_commentPascal Rigaux2000-08-051-0/+1
* no_commentPascal Rigaux2000-07-131-0/+3
* no_commentPascal Rigaux2000-07-101-0/+6
* no_commentPascal Rigaux2000-06-241-5/+25
* no_commentPascal Rigaux2000-06-071-0/+1
BLK(); ($major, $minor) = @{ ${{'a' => [3, 0], 'b' => [3, 64], 'c' => [22,0], 'd' => [22,64], 'e' => [33,0], 'f' => [33,64], 'g' => [34,0], 'h' => [34,64], 'i' => [56,0], 'j' => [56,64], 'k' => [57,0], 'l' => [57,64], 'm' => [88,0], 'n' => [88,64], 'o' => [89,0], 'p' => [89,64], 'q' => [90,0], 'r' => [90,64], 's' => [91,0], 't' => [91,64], }}{$1} or internal_error("unknown device $_") }; $minor += $2 || 0; } elsif (/^ram(.*)/) { $type = c::S_IFBLK(); $major = 1; $minor = $1 eq '' ? 1 : $1; } elsif (m|^rd/c(\d+)d(\d+)(p(\d+))?|) { # dac 960 "rd/cXdXXpX" $type = c::S_IFBLK(); $major = 48 + $1; $minor = 8 * $2 + $4; } elsif (m,(ida|cciss)/c(\d+)d(\d+)(?:p(\d+))?,) { # Compaq Smart Array "ida/c0d0{p1}" $type = c::S_IFBLK(); $major = ($1 eq 'ida' ? 72 : 104) + $2; $minor = 16 * $3 + ($4 || 0); } elsif (m,(ataraid)/d(\d+)(?:p(\d+))?,) { # ATA raid "ataraid/d0{p1}" $type = c::S_IFBLK(); $major = 114; $minor = 16 * $1 + ($2 || 0); } elsif (/(.*?)(\d+)$/) { ($type, $major, $minor) = @{ ${{"fd" => [ c::S_IFBLK(), 2, 0 ], "hidbp-mse-" => [ c::S_IFCHR(), 10, 32 ], "lp" => [ c::S_IFCHR(), 6, 0 ], "usb/lp" => [ c::S_IFCHR(), 180, 0 ], "input/event" => [ c::S_IFCHR(), 13, 64 ], "loop" => [ c::S_IFBLK(), 7, 0 ], "md" => [ c::S_IFBLK(), 9, 0 ], "nst" => [ c::S_IFCHR(), 9, 128 ], "sr" => [ c::S_IFBLK(), 11, 0 ], "ttyS" => [ c::S_IFCHR(), 4, 64 ], "ubd/" => [ c::S_IFBLK(), 98, 0 ], }}{$1} }; $minor += $2; } unless ($type) { ($type, $major, $minor) = @{ ${{"aztcd" => [ c::S_IFBLK(), 29, 0 ], "bpcd" => [ c::S_IFBLK(), 41, 0 ], "cdu31a" => [ c::S_IFBLK(), 15, 0 ], "cdu535" => [ c::S_IFBLK(), 24, 0 ], "cm206cd" => [ c::S_IFBLK(), 32, 0 ], "gscd" => [ c::S_IFBLK(), 16, 0 ], "mcd" => [ c::S_IFBLK(), 23, 0 ], "mcdx" => [ c::S_IFBLK(), 20, 0 ], "mem" => [ c::S_IFCHR(), 1, 1 ], "optcd" => [ c::S_IFBLK(), 17, 0 ], "kbd" => [ c::S_IFCHR(), 11, 0 ], "psaux" => [ c::S_IFCHR(), 10, 1 ], "atibm" => [ c::S_IFCHR(), 10, 3 ], "random" => [ c::S_IFCHR(), 1, 8 ], "urandom" => [ c::S_IFCHR(), 1, 9 ], "sbpcd" => [ c::S_IFBLK(), 25, 0 ], "sjcd" => [ c::S_IFBLK(), 18, 0 ], "tty" => [ c::S_IFCHR(), 5, 0 ], "input/mice" => [ c::S_IFCHR(), 13, 63 ], "usbmouse" => [ c::S_IFCHR(), 13, 63 ], #- aka /dev/input/mice "adbmouse" => [ c::S_IFCHR(), 10, 10 ], #- PPC "vcsa" => [ c::S_IFCHR(), 7, 128 ], "zero" => [ c::S_IFCHR(), 1, 5 ], "null" => [ c::S_IFCHR(), 1, 3 ], }}{$_} or internal_error("unknown device $_") }; } ($type, $major, $minor); } sub make($) { local $_ = my $file = $_[0]; if (m!^(.*/dev)/(.*)!) { $_ = $2; } else { $file =~ m|^/| && -e $file or $file = "/dev/$_"; } -e $file and return $file; #- assume nobody takes fun at creating files named as device my ($type, $major, $minor) = entry($_); if ($file =~ m|/dev/| && -e '/dev/.devfsd') { #- argh, creating devices is no good with devfs... #- return the file even if the device file doesn't exist #- the caller will fail or not, better compatibility than raising an exception here return $file; } #- make a directory for this inode if needed. mkdir_p(dirname($file)); syscall_('mknod', $file, $type | 0600, makedev($major, $minor)) or die "mknod failed (dev $_): $!"; $file; } #- only isomorphic entries are allowed, #- i.e. entries which can go devfs -> normal and normal -> devfs my %to_devfs = ( psaux => 'misc/psaux', usbmouse => 'input/mice', ); my %to_devfs_prefix = ( ttyS => 'tts/', ); sub to_devfs { my ($dev) = @_; if (my $r = $to_devfs{$dev}) { return $r; } elsif ($dev =~ /(.*?)(\d+)$/) { my $r = $to_devfs_prefix{$1}; return "$r$2" if $r; } readlink("/dev/" . $dev); } sub read_proc_partitions_raw() { my (undef, undef, @all) = cat_("/proc/partitions"); grep { $_->{size} != 1 && # skip main extended partition $_->{size} != 0x3fffffff; # skip cdroms (otherwise stops cd-audios) } map { my %l; @l{qw(major minor size dev)} = split; \%l; } @all; } sub from_devfs { my ($dev) = @_; my %from_devfs = reverse %to_devfs; if (my $r = $from_devfs{$dev}) { return $r; } elsif ($dev =~ /(.*?)(\d+)$/) { my %from_devfs_prefix = reverse %to_devfs_prefix; my $r = $from_devfs_prefix{$1}; return "$r$2" if $r; } $dev = "/dev/" . $dev; if (-e $dev) { my ($major, $minor) = unmakedev((stat($dev))[6]); my $r = find { $_->{major} == $major && $_->{minor} == $minor } read_proc_partitions_raw(); $r and return $r->{dev}; } undef; } sub simple_partition_scan { my ($part) = @_; $part->{device} =~ /([hs]d[a-z])(\d+)$/; } sub part_number { my ($part) = @_; (simple_partition_scan($part))[1]; } sub part_prefix { my ($part) = @_; (simple_partition_scan($part))[0]; } 1;