Browse Source

fixed linuxrc.c - function trymount is mounting on /mnt_source for ext3

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@2192 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
ff36f67896
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      target/bootdisk/linuxrc.c

+ 1
- 1
target/bootdisk/linuxrc.c

@ -89,7 +89,7 @@ void doboot()
int trymount (const char* source, const char* target)
{
return mount(source, "/mnt_source", "ext3", MS_RDONLY, NULL) &&
return mount(source, target, "ext3", MS_RDONLY, NULL) &&
mount(source, target, "ext2", MS_RDONLY, NULL) &&
mount(source, target, "minix", MS_RDONLY, NULL) &&
mount(source, target, "vfat", MS_RDONLY, NULL) &&

Loading…
Cancel
Save