| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Renamed loader2 subdirectory to loader (hooray for git) | David Cantrell | 2008-08-25 | 1 | -367/+0 |
| | | |||||
| * | Use NetworkManager instead of libdhcp. (#458183) | David Cantrell | 2008-08-25 | 1 | -1/+1 |
| | | | | | | | | | | | | Finally, no more libdhcp. This is the first set of changes to take anaconda over to the wonderful world of NetworkManager. We are no longer linking with libdhcp to do interface configuration. NM is started early in the installation and opens the door to things like WPA installation support and things like that. | ||||
| * | Make it more explicit we want the stage2.img URL, not the repo URL. | Chris Lumens | 2008-08-13 | 1 | -1/+1 |
| | | |||||
| * | In cmdline mode, give some feedback when transferring loader files. | Chris Lumens | 2008-07-11 | 1 | -3/+6 |
| | | |||||
| * | Use %m rather than strerror() where appropriate. | Peter Jones | 2008-07-08 | 1 | -4/+2 |
| | | |||||
| * | Check return value of asprintf() consistently | David Cantrell | 2008-06-27 | 1 | -3/+8 |
| | | | | | | | | | | For instances where the asprintf() was ignored, wrap it in a test to check if it failed. If it failed, log a message and abort. There may be some instances where abort may not be what we want to do, however, we were ignoring the return value completely so if we did get a failure, it would just SIGSEGV. Now it will SIGABRT instead. | ||||
| * | Per strtol(3) man page, set errno=0 before call. | David Cantrell | 2008-06-27 | 1 | -0/+1 |
| | | | | | | | | | | | From the NOTES section of strtol(3): "Since strtol() can legitimately return 0, LONG_MAX, or LONG_MIN (LLONG_MAX or LLONG_MIN for strtoll()) on both success and failure, the calling program should set errno to 0 before the call, and then determine if an error occurred by checking whether errno has a non-zero value after the call." | ||||
| * | Use strtol() instead of atoi() | David Cantrell | 2008-06-26 | 1 | -3/+12 |
| | | | | | | | | Code cleanup patch. Use strtol() to convert strings to ints, rather than atoi(). No error checking capability with atoi(). Also add error handling to detect strtol failures. | ||||
| * | Strip urlinstall.c down to just looking for the stage2 image. | Chris Lumens | 2008-06-18 | 1 | -93/+5 |
| | | |||||
| * | Don't crash when given URLs of the form ftp://user@host/path (#445295) | David Lehman | 2008-05-05 | 1 | -0/+1 |
| | | |||||
| * | Only remove duplicate slashes from the front of the prefix. | Chris Lumens | 2008-03-26 | 1 | -1/+1 |
| | | |||||
| * | Avoid piling up slashes in the UI when retrying (#437516). | Chris Lumens | 2008-03-19 | 1 | -1/+1 |
| | | |||||
| * | Only print the filename we're fetching, as newt doesn't like long names. | Chris Lumens | 2008-03-17 | 1 | -2/+4 |
| | | |||||
| * | Remove references to an uninitialized variable. | Chris Lumens | 2008-03-14 | 1 | -3/+3 |
| | | |||||
| * | Fix some errors on reporting which files are being downloaded. | Chris Lumens | 2008-03-14 | 1 | -9/+4 |
| | | |||||
| * | Only pass the file path to {ftp,http}GetFileDesc. | Chris Lumens | 2008-03-07 | 1 | -6/+11 |
| | | |||||
| * | Fix logging messages to not display the hostname twice. | Chris Lumens | 2008-03-07 | 1 | -2/+2 |
| | | |||||
| * | Make sure http:// or ftp:// is specified (#436089) | Jeremy Katz | 2008-03-05 | 1 | -1/+8 |
| | | |||||
| * | Fix segfault when port is specified (#435219) | Jeremy Katz | 2008-03-05 | 1 | -2/+0 |
| | | |||||
| * | Change the method config prompts. | Chris Lumens | 2008-03-04 | 1 | -1/+2 |
| | | |||||
| * | Support stage2= for URL installs. | Chris Lumens | 2008-03-04 | 1 | -19/+5 |
| | | |||||
| * | Remove our own DNS functions, since glibc's are available now. | Chris Lumens | 2008-02-05 | 1 | -13/+10 |
| | | |||||
| * | Free the grid like we do everywhere else. | Chris Lumens | 2008-01-10 | 1 | -4/+3 |
| | | |||||
| * | Don't double free buf. | Chris Lumens | 2008-01-09 | 1 | -2/+0 |
| | | |||||
| * | Make the URL entry box wider. | Chris Lumens | 2008-01-09 | 1 | -1/+1 |
| | | |||||
| * | Fix a segfault in making the URL dialog box. | Chris Lumens | 2008-01-07 | 1 | -1/+1 |
| | | |||||
| * | Use a better test when populating the URL panel in loader. | Chris Lumens | 2008-01-04 | 1 | -2/+2 |
| | | |||||
| * | Clean up typos and other things for GPLv2+ changes. | David Cantrell | 2007-12-17 | 1 | -4/+4 |
| | | | | | | | | Shorten 'Red Hat Author(s)' to just 'Author(s)'. Perhaps eventually we'll get an AUTHORS file and will just remove author names from the individual files. Also fixed a type in scripts/dumphdrlist.py where Author was listed twice. | ||||
| * | GPLv2+ boilerplates for loader2/ source files. | David Cantrell | 2007-12-17 | 1 | -9/+16 |
| | | |||||
| * | Don't try to parse a NULL ui structure. | Chris Lumens | 2007-12-11 | 1 | -2/+3 |
| | | |||||
| * | Merge the FTP and HTTP methods into a single URL method. | Chris Lumens | 2007-12-07 | 1 | -154/+69 |
| | | | | | | | | This removes the separate FTP and HTTP network method dialogs in the loader and replaces them with a single configuration dialog that asks the user to input a URL. It also modified the secondary config screen to prompt just for a proxy and simplifies a lot of the conversion from URL to UI and back. | ||||
| * | - remove sdupprintf(), use asprintf() instead. | Peter Jones | 2007-10-22 | 1 | -5/+6 |
| | | |||||
| * | Clean up some memory management in HTTP/FTP file transferring. Fix loader | Chris Lumens | 2007-10-12 | 1 | -2/+10 |
| | | | | | | segfaults caused by improperly appending the MAC address-specific HTTP headers (#328191). | ||||
| * | Same change you just saw on rhel5-branch ported to the HEAD branch. | David Cantrell | 2007-08-06 | 1 | -1/+1 |
| | | |||||
| * | Whitespace cleanups before code changes. | David Cantrell | 2007-03-06 | 1 | -25/+24 |
| | | |||||
| * | Don't care about the return value of asprintf. | Chris Lumens | 2007-01-09 | 1 | -1/+2 |
| | | |||||
| * | * loader2/urls.c (urlMainSetupPanel): If the user specified http:// | David Cantrell | 2007-01-05 | 1 | -2/+8 |
| | | | | | | or ftp:// on the site name, trim that before putting it in the ui structure (#220728). | ||||
| * | Added IPv6 DNS lookup support to libisys. | David Cantrell | 2006-11-02 | 1 | -8/+10 |
| | | |||||
| * | Use splitHostname so we don't attempt to gethostbyname on a string containing a | Chris Lumens | 2006-10-31 | 1 | -9/+16 |
| | | | | | port number (#212622). | ||||
| * | Fix bad info message. | Chris Lumens | 2006-10-16 | 1 | -1/+1 |
| | | |||||
| * | * loader2/urlinstall.c: Do not pass silentErrors to | David Cantrell | 2006-08-08 | 1 | -17/+3 |
| | | | | | | | | | | | urlinstStartTransfer() (#201247). * loader2/urls.c: Remove redundant download failure messages in the urlinstStartTransfer() function. Do not accept silentErrors as a parameter (#201247). * loader2/urls.h: Prototype update for urlinstStartTransfer(). | ||||
| * | Fix traceback when trying to add a leading slash to paths without one | Chris Lumens | 2006-08-04 | 1 | -10/+3 |
| | | | | | (#197403, #201243, #201367). | ||||
| * | * loader2/urls.c (addrToIp): Correctly handle IP addresses passed as | David Cantrell | 2006-08-01 | 1 | -5/+6 |
| | | | | | | | | strings to this function. * loader2/urls.c (urlinstStartTransfer): Commented out mygethostbyname() call for IPv6 family for now, since it's not ready yet. | ||||
| * | * loader2/ftp.c (getHostAddress): Use mygethostbyname(). | David Cantrell | 2006-07-31 | 1 | -11/+12 |
| | | | | | | | | | * loader2/urls.c (addrToIp): Use mygethostbyname(). * loader2/urls.c (urlinstStartTransfer): Use mygethostbyname() to try and determine host address family before calling ftpOpen() or httpGetFileDesc(). | ||||
| * | * loader2/ftp.c (ftpOpen, ftpGetFileDesc): Support IPv6 hosts, which | David Cantrell | 2006-07-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | means using the EPSV command instead of PASV. We don't get the IP address of the server in the response, so ftpGetFileDesc needs to bring in the in6_addr we already made for the server so we can then make the socket connection. * loader2/ftp.h: Prototype updates. * loader2/urls.c: Pass the in6_addr for the FTP server to the ftpGetFileDesc() function. | ||||
| * | * loader2/urls.c (urlinstStartTransfer): Determine address family | David Cantrell | 2006-07-26 | 1 | -7/+25 |
| | | | | | | | | | | | | | | | | | | | and pass that to the ftpOpen() call. * urlinstall.py (UrlInstallMethod.__init__): Use urlparse. * isys/dns.c, isys/dns.h: Updated for IPv6 support. * loader2/Makefile: Cleanups. * loader2/ftp.c, loader2/ftp.h: Updated for IPv6 support. * loader2/loader.c: Whitespace consistency. * loader2/method.c: Whitespace consistency. * loader2/urls.c: Updated for IPv6 support. | ||||
| * | * loader2/urls.c (addrToIp): Use AF_INET6 when making an in6_addr. | David Cantrell | 2006-07-26 | 1 | -1/+1 |
| | | |||||
| * | * loader2/net.c: Bump inet_pton() buffers to length 48. | David Cantrell | 2006-07-25 | 1 | -11/+9 |
| | | | | | | | | Let users skip entering a DNS server in getDnsServers(), but still require a valid one if they enter anything. * loader2/urls.c (addrToIp): Update to support IPv6. | ||||
| * | SNAKES ON A PLANE | David Cantrell | 2006-06-28 | 1 | -10/+10 |
| | | |||||
| * | Fix double free() (#195749). This is the "holy shit we see glibc double | David Cantrell | 2006-06-27 | 1 | -10/+4 |
| | | | | | | free ***** error when we try to do an HTTP or FTP install" problem that a lot of people have reported. | ||||
