_kern_mount
extern dev_t _kern_mount(const char *path, const char *device,
status = _kern_mount(mntpoint, device, fs_name, B_MOUNT_READ_ONLY, "", 0);
status = _kern_mount("/", NULL, "rootfs", 0, NULL, 0);
status = _kern_mount("/dev", NULL, "devfs", 0, NULL, 0);
bootDevice = _kern_mount("/boot", path.Path(), fsName, 0, NULL, 0);
dev_t packageMount = _kern_mount("/boot/system", NULL, kPackageFSName,
packageMount = _kern_mount("/boot/home/config", NULL, kPackageFSName, 0,
swapDeviceID = _kern_mount(mountPath, devPath.Path(),
return _kern_mount(where, device, fileSystem, flags, (void *)parameters,
fssh_dev_t fsDev = _kern_mount(kMountPoint, device, fsName, 0, NULL, 0);
fssh_dev_t rootDev = _kern_mount("/", NULL, "rootfs", 0, NULL, 0);
fssh_dev_t fsDev = _kern_mount(kMountPoint, device, fsName, 0, NULL, 0);
fssh_dev_t rootDev = _kern_mount("/", NULL, "rootfs", 0, NULL, 0);
fssh_dev_t _kern_mount(const char *path, const char *device,