From: Willem S. <wi...@pr...> - 2003-03-04 17:32:07
|
On 4 Mar 2003, Miguel Costa wrote: > the second problem is mounting node partitions: I can't get swap to work > but beoboot's setupfs.c says this is on the todo list. However, mounting > a ext2 or ext3 partition also fails, without explanation on the logs. > /home is nfs mounted from the server, so I just wanted to know if > setupfs is broken or I'm still doing something wrong. There is a bug in using a local disk drive in Clustermatic 3 that is fixed by the following patch. Download beoboot-cm source and apply the patch. Basically, there is a stray "return" that needs to be removed. --- beoboot-cm.1.4/node_up/setupfs.c.0 2002-08-07 10:19:03.000000000 -0600 +++ beoboot-cm.1.4/node_up/setupfs.c 2003-02-01 21:18:53.000000000 -0700 @@ -291,7 +291,6 @@ return -1; } - return -1; } /* More special case filesystem types */ |