Alten PCMCIA Code aus dem Installer entfernt.

Unattended Installation bearbeitet.
HTTP/FTP-Installation nun moeglich.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@449 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-03-17 21:14:34 +00:00
parent 4809e64e27
commit c78a77ebeb
12 changed files with 211 additions and 1121 deletions

View File

@@ -36,7 +36,7 @@ int checktarball(char *file, char *message)
/* remove any successive /'s */
while (url[strlen(url)-1] == '/') { url[strlen(url)-1] = '\0'; }
snprintf(commandstring, STRING_SIZE, "/bin/wget -s -O /dev/null %s/%s", url, file);
snprintf(commandstring, STRING_SIZE, "/bin/wget -q --spider -O /dev/null %s/%s", url, file);
if (!(runcommandwithstatus(commandstring, ctr[TR_CHECKING])))
{
done = 1;
@@ -63,7 +63,7 @@ static int gettarballurl(char *url, char *message)
char title[STRING_SIZE];
int rc;
sprintf (title, "%s v%s - %s", NAME, VERSION, SLOGAN);
sprintf (title, "%s %s - %s", NAME, VERSION, SLOGAN);
rc = newtWinEntries(title, message,
60, 5, 5, 50, entries, ctr[TR_OK], ctr[TR_CANCEL], NULL);