diff --git a/src/system/kernel/fs/vfs_boot.cpp b/src/system/kernel/fs/vfs_boot.cpp
index f4f1102..3e5a9d9 100644
a
|
b
|
vfs_bootstrap_file_systems(void)
|
455 | 455 | |
456 | 456 | for (int32 i = 0; sPredefinedLinks[i].path != NULL; i++) { |
457 | 457 | _kern_create_symlink(-1, sPredefinedLinks[i].path, |
458 | | sPredefinedLinks[i].target, 0); |
| 458 | sPredefinedLinks[i].target, 0777); |
459 | 459 | // we don't care if it will succeed or not |
460 | 460 | } |
461 | 461 | |
… |
… |
vfs_mount_boot_file_system(kernel_args* args)
|
517 | 517 | char path[B_FILE_NAME_LENGTH + 1]; |
518 | 518 | snprintf(path, sizeof(path), "/%s", info.volume_name); |
519 | 519 | |
520 | | _kern_create_symlink(-1, path, "/boot", 0); |
| 520 | _kern_create_symlink(-1, path, "/boot", 0777); |
521 | 521 | } |
522 | 522 | |
523 | 523 | // If we're booting off a packaged system, mount packagefs. |