Displaying 1 result from an estimated 1 matches for "4ubuntu".
Did you mean:
ubuntu
2008 Jul 03
1
extlinux and install script
...------------
The extlinux could not find the entry in the /proc/mounts then try
/etc/mtab. But it didn't check if the file type is ext2 or ext3.
I think it should check if it is ext2 or ext3. So I wrote the
following patch and it fix the above issue. (I'm using ubuntu, the
syslinux is 3.36-4ubuntu)
--- extlinux.c.orig 2007-02-10 20:47:08.000000000 +0000
+++ extlinux.c 2008-07-02 15:20:20.000000000 +0000
@@ -708,8 +708,13 @@
/* Didn't find it in /proc/mounts, try /etc/mtab */
if ( (mtab = setmntent("/etc/mtab", "r")) ) {
while ( (mnt = getmntent(mtab)...