Installer fuer ein read-only-Dateisystem angepasst.

mingetty entfernt, da wir agetty verwenden.
issue veraendert


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@396 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-01-25 15:36:43 +00:00
parent de297ec3fb
commit 0b59f25c65
12 changed files with 36 additions and 120 deletions

View File

@@ -335,7 +335,7 @@ int main(int argc, char *argv[])
}
/* read source drive letter */
if ((handle = fopen("/source_device", "r")) == NULL) {
if ((handle = fopen("/tmp/source_device", "r")) == NULL) {
errorbox(ctr[TR_ERROR_PROBING_CDROM]);
goto EXIT;
}
@@ -457,11 +457,11 @@ int main(int argc, char *argv[])
* the disk.
*/
/* Don't use mysystem here so we can redirect output */
sprintf(commandstring, "/bin/sfdisk -s /dev/%s > /disksize 2> /dev/null", harddrive);
sprintf(commandstring, "/bin/sfdisk -s /dev/%s > /tmp/disksize 2> /dev/null", harddrive);
system(commandstring);
/* Calculate amount of disk space */
if ((handle = fopen("/disksize", "r")))
if ((handle = fopen("/tmp/disksize", "r")))
{
fgets(line, STRING_SIZE-1, handle);
if (sscanf (line, "%s", string)) {