diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/fs/zfs/dev.c | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/fs/zfs/dev.c')
-rw-r--r-- | roms/u-boot/fs/zfs/dev.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/roms/u-boot/fs/zfs/dev.c b/roms/u-boot/fs/zfs/dev.c new file mode 100644 index 000000000..251e7d1f7 --- /dev/null +++ b/roms/u-boot/fs/zfs/dev.c @@ -0,0 +1,30 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * + * based on code of fs/reiserfs/dev.c by + * + * (C) Copyright 2003 - 2004 + * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com> + */ + + +#include <common.h> +#include <config.h> +#include <fs_internal.h> +#include <zfs_common.h> + +static struct blk_desc *zfs_blk_desc; +static struct disk_partition *part_info; + +void zfs_set_blk_dev(struct blk_desc *rbdd, struct disk_partition *info) +{ + zfs_blk_desc = rbdd; + part_info = info; +} + +/* err */ +int zfs_devread(int sector, int byte_offset, int byte_len, char *buf) +{ + return fs_devread(zfs_blk_desc, part_info, sector, byte_offset, + byte_len, buf); +} |