From c071604907bc848205602cfc863e0e943cfff17d Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 1 Jul 2004 04:18:32 +0000 Subject: stage1 used to write files /tmp/network, /tmp/ifcfg-eth0, /etc/modules.conf 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 --- mdk-stage1/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdk-stage1') diff --git a/mdk-stage1/modules.c b/mdk-stage1/modules.c index efd9efdb8..0f6d6de7f 100644 --- a/mdk-stage1/modules.c +++ b/mdk-stage1/modules.c @@ -308,7 +308,7 @@ void init_modules_insmoding(void) static void add_modules_conf(char * str) { static char data[5000] = ""; - char * target = "/etc/modules.conf"; + char * target = "/tmp/modules.conf"; int fd; if (strlen(data) + strlen(str) >= sizeof(data)) -- cgit v1.2.1