summaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Expand)AuthorAgeFilesLines
* fix requires (gtk+-1.x => gtk+-2.x)Thierry Vignaud2005-08-261-2/+2
* we need xfsdump for /sbin/dump.xfsThierry Vignaud2005-08-171-1/+1
* fixPascal Rigaux2005-08-091-1/+1
* replace mandrake with mandrivaPascal Rigaux2005-08-091-4/+4
* - updateThierry Vignaud2005-08-031-3/+3
* Document that dietlibc-devel is now required to build giRafael Garcia-Suarez2005-05-061-1/+1
* update package list regarding gtk+ bindingsThierry Vignaud2005-03-291-1/+1
* add another required package (dmraid)Thierry Vignaud2005-02-101-1/+1
* Add some more necessary RPMsRafael Garcia-Suarez2005-02-081-1/+2
* *** empty log message ***Pascal Rigaux2005-02-081-0/+22
* - drop oem & recovery code (which was broken)Pascal Rigaux2004-11-291-79/+0
* - no more kernel/all.modules, things are in kernel/all.kernelsPascal Rigaux2004-11-221-11/+4
* major switch from ramdisk to clpPascal Rigaux2004-11-161-46/+7
* adapt to new directories layout:Pascal Rigaux2004-07-261-23/+23
* replace "Mandrake Linux" with "Mandrakelinux"Pascal Rigaux2004-07-192-5/+5
* rename --test in --testing for install2 (more coherent with standalone tools)Pascal Rigaux2004-06-221-1/+1
* - perl-XML-Parser is needed at build stageDaouda Lo2004-05-261-1/+1
* quick update, not completePascal Rigaux2004-05-031-29/+9
* update netauto docGuillaume Cottenceau2004-02-041-1/+1
* wrong, "make" in kernel by hand is not even neededGuillaume Cottenceau2004-01-231-4/+3
* updateGuillaume Cottenceau2004-01-231-21/+34
* update (thanks to Sunny Dubey)Pascal Rigaux2004-01-201-10/+10
* update from sunny@opencurve.orgPascal Rigaux2004-01-121-42/+53
* remove some really obsolete docPascal Rigaux2003-07-291-10/+2
* some fixes and improvementsGuillaume Cottenceau2003-04-041-9/+52
* some updatesGuillaume Cottenceau2003-04-041-19/+13
* - mcc erratasThierry Vignaud2003-03-271-15/+31
* *** empty log message ***Thierry Vignaud2003-03-261-1/+2
* first drakxtools errataThierry Vignaud2003-03-261-0/+22
* update, sortThierry Vignaud2003-03-191-7/+62
* first errate: ntfs kernel bug (bug and fix reported by SzakacsitsThierry Vignaud2003-03-191-0/+27
* *** empty log message ***Thierry Vignaud2003-03-131-2/+3
* more stuffThierry Vignaud2003-03-131-0/+2
* more thoughtsThierry Vignaud2003-03-131-2/+4
* better embedded diskdrake hintThierry Vignaud2003-03-121-0/+1
* updateThierry Vignaud2003-03-111-1/+7
* updateThierry Vignaud2003-03-101-1/+19
* first bits of mdk9.2 specs (aka postponed bugs...) stuffThierry Vignaud2003-03-061-0/+43
* update to new partition_table schemeThierry Vignaud2003-02-051-6/+6
* new obsolete func (thanks drakcronat)Thierry Vignaud2003-02-031-0/+2
* add explained changes in hwdata and kudzu from redhat 8.0 to 8.1betaPascal Rigaux2003-01-121-0/+23
* add changes between anaconda 8.0 and currentPascal Rigaux2003-01-121-72/+156
* add a tool to ease gtk2 port.Thierry Vignaud2002-12-021-0/+46
* *** empty log message ***Pascal Rigaux2002-11-061-0/+1
* miaouThierry Vignaud2002-10-021-7/+7
* i810 crash when using XRender on vt switch (see fredc for furtherThierry Vignaud2002-10-021-0/+5
* kernel : snd-via686 is said to produce white noise; add workaroundThierry Vignaud2002-10-021-1/+4
* nforce audio bugThierry Vignaud2002-10-021-0/+5
* drakconf bug has been workaroundedThierry Vignaud2002-10-021-0/+2
* add 3 bugs:Thierry Vignaud2002-10-011-0/+26
opt">= wireless_open_socket(); if (!wireless_is_aware(wsock, ifname)) { log_message("interface %s doesn't support wireless", ifname); wireless_close_socket(wsock); return RETURN_OK; } results = ask_from_entries_auto("Please enter your wireless settings. " "The ESSID is your wireless network identifier. " "The WEP key must be entered in hexadecimal, without any separator.", questions, &answers, 32, questions_auto, NULL); if (results != RETURN_OK) { wireless_close_socket(wsock); return RETURN_BACK; } if (!wireless_set_mode_managed(wsock, ifname)) { stg1_error_message("unable to set mode Managed on device \"%s\": %s", ifname, strerror(errno)); wireless_close_socket(wsock); return RETURN_ERROR; } if (answers[1] && !streq(answers[1], "")) { log_message("setting WEP key \"%s\" on device \"%s\"", answers[1], ifname); if (!wireless_set_restricted_key(wsock, ifname, answers[1])) { stg1_error_message("unable to set WEP key \"%s\" on device \"%s\": %s", answers[1], ifname, strerror(errno)); return RETURN_ERROR; } } else { log_message("disabling WEP key on device \"%s\"", ifname); if (!wireless_disable_key(wsock, ifname)) { stg1_error_message("unable to disable WEP key on device \"%s\": %s", ifname, strerror(errno)); return RETURN_ERROR; } } /* most devices perform discovery when ESSID is set, it needs to be last */ log_message("setting ESSID \"%s\" on device \"%s\"", answers[0], ifname); if (!wireless_set_essid(wsock, ifname, answers[0])) { stg1_error_message("unable to set ESSID \"%s\" on device \"%s\": %s", answers[0], ifname, strerror(errno)); return RETURN_ERROR; } wireless_close_socket(wsock); return RETURN_OK; }