summaryrefslogtreecommitdiffstats
path: root/mdk-stage1
Commit message (Collapse)AuthorAgeFilesLines
...
* (perform_adsl) ppp module doesn't exist, don't try to load itOlivier Blin2004-09-071-1/+0
|
* fix cancel in disk installOlivier Blin2004-09-021-4/+4
|
* drop non-standard tld (localdomain)Olivier Blin2004-09-011-1/+1
|
* (probe_that_type) do not prompt in discovered_device() before loading usb ↵Olivier Blin2004-08-161-1/+3
| | | | controllers (they're not network devices)
* restart forked process if it exits with exit_value_restart as returnOlivier Blin2004-08-121-12/+15
| | | | | | | code (thanks to Rafael for the choice of its value, 0x35 is the translation of RS, abbreviation of ReStart, in his local l33t dialect, and happens to be 53 in its decimal form, which is quite nice)
* reorder else if blocks, it's useless to do two times the same testOlivier Blin2004-08-121-5/+5
| | | | | (WEXITSTATUS(wait_status) == exit_value_proceed)
* use a do while loop to wait for forked processOlivier Blin2004-08-121-5/+2
|
* typo fix (from Olivier Borowski)Olivier Blin2004-08-091-1/+1
|
* do not go back to the beginning if no distribution is found in theOlivier Blin2004-08-051-1/+1
| | | | | directory (second fix)
* do not go back to the beginning if no distribution is found in the directoryOlivier Blin2004-08-051-1/+1
|
* prefer to use a ramdisk for disk installsOlivier Blin2004-08-041-1/+1
|
* revert previous commit, that won't work after pivot_root (proc has toOlivier Blin2004-07-301-6/+3
| | | | | | be mounted, insmod would have to be able to find the modules in the new root)
* do not probe usb interface too soon, wait for the Move images to be mountedOlivier Blin2004-07-281-3/+6
| | | | | (or else usb drivers won't be automatically loaded at boot with Move)
* adapt to new directories layout:Pascal Rigaux2004-07-264-6/+6
| | | | | | | | | | | - Mandrake/mdkinst -> install/stage2/live - Mandrake/base/mdkinst_stage2.bz2 -> install/stage2/mdkinst_stage2.bz2 - Mandrake/base/rpmsrate -> media/media_info/rpmsrate - Mandrake/RPMS -> media/main - images -> install/images - isolinux -> install/isolinux - Mandrake/share/advertising -> install/extra/advertising
* MandrakeSoft -> MandrakesoftPascal Rigaux2004-07-2070-70/+70
|
* replace "Mandrake Linux" with "Mandrakelinux"Pascal Rigaux2004-07-191-5/+5
|
* umount nfs directory if an error occurs tooOlivier Blin2004-07-131-2/+2
|
* don't forget to umount ISO imagesOlivier Blin2004-07-131-3/+9
|
* it is again stupid to use a ramdisk if the install location isn'tOlivier Blin2004-07-131-1/+1
| | | | | mounted by loopback
* fix segfault when hostname resolves as weird name without any dot (forOlivier Blin2004-07-131-11/+26
| | | | | | example 24.159.64.20 resolves as TN-JACKSN-NR1) and abort domain name guess in this case
* fix blino fixPascal Rigaux2004-07-061-2/+2
|
* add missing slash in Mandrake Move image locationOlivier Blin2004-07-061-1/+1
|
* doing basename is dumb (is blino too?), really make the symlink relativePascal Rigaux2004-07-062-4/+7
|
* - when the directory is bad, go back to choose another directory instead of ↵Pascal Rigaux2004-07-061-6/+6
| | | | | | | | choosing another device (you can still use "Cancel" to choose another device) - list files in directory given, not the root directory of the device
* properly handle error return code in nfs installOlivier Blin2004-07-051-0/+2
|
* rephrase previous patch, with correct indentation this timeOlivier Blin2004-07-011-12/+4
|
* add a slash at beginning of the given directory if not already present (ftp ↵Olivier Blin2004-07-011-3/+14
| | | | and http install)
* stage1 used to write files /tmp/network, /tmp/ifcfg-eth0, /etc/modules.confPascal Rigaux2004-07-011-1/+1
| | | | | | | but those files are in /stage1 after pivot rooting, so: - write modules.conf in /tmp instead of /etc - cp those files from /stage1/tmp to /tmp before umounting /stage1
* properly handle "back" behavior in mirror list stepOlivier Blin2004-06-291-2/+2
|
* do not unset automatic if mirror list selection fails, we know it wasn't ↵Olivier Blin2004-06-291-3/+1
| | | | automatic at that point
* remove http proxy settings from interface structure, that was really dumbOlivier Blin2004-06-292-27/+12
|
* allow to use a specific ACNAME for pppoe connectionsOlivier Blin2004-06-293-6/+13
|
* variable declaration fixes (spotted by neofutur)Olivier Blin2004-06-293-3/+3
|
* fix typoOlivier Blin2004-06-251-1/+1
|
* do not use ramdisk in nfs installOlivier Blin2004-06-251-1/+2
|
* add missing include for basename()Olivier Blin2004-06-251-0/+1
|
* use relative symlink to image location in disk/nfs install, to have a ↵Olivier Blin2004-06-251-1/+1
| | | | working stage2
* unset automatic in ftp/http install when ramdisk can't be loadedOlivier Blin2004-06-251-1/+4
|
* use new http_proxy variables instead of the old answers (not anymore available)Olivier Blin2004-06-251-2/+2
|
* don't redefine buf for /proc/scsi/scsi (size 5000 instead of 2048)Nicolas Planel2004-06-241-1/+0
|
* revert the workaround on stat() now that it works on large filesOlivier Blin2004-06-231-6/+5
|
* define _FILE_OFFSET_BITS=64 so that stat() is large files awareOlivier Blin2004-06-231-1/+1
|
* workaround the fact that stat() fails on large files (like DVD ISO images)Olivier Blin2004-06-211-5/+6
|
* add log message when using directory as a mirror treeOlivier Blin2004-06-211-0/+1
|
* allow to use ISO images in NFS installOlivier Blin2004-06-212-24/+7
|
* split directory specific functions and move them from disk.c to directory.c ↵Olivier Blin2004-06-214-157/+226
| | | | (will be used in NFS install)
* in iso install, use ISOPATH environment variable instead of loopback device ↵Olivier Blin2004-06-181-0/+1
| | | | filename (limited to 64 chars)
* enlarge your scsi buffer (previous size wasn't enough with more than one ↵Olivier Blin2004-06-171-1/+1
| | | | scsi device, fixed thanks to nplanel)
* add disk-iso install methodOlivier Blin2004-06-171-3/+4
|
* do not delete loopbacks devices before umount but afterOlivier Blin2004-06-171-5/+5
|