public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] zfs: Add filesystem ZFS support
@ 2012-05-23  2:26 Jorgen Lundman
  2012-05-23  2:26 ` [U-Boot] [PATCH 1/2] ZFS header files Jorgen Lundman
                   ` (10 more replies)
  0 siblings, 11 replies; 35+ messages in thread
From: Jorgen Lundman @ 2012-05-23  2:26 UTC (permalink / raw)
  To: u-boot

ZFS filesystem support from GRUB. Adding 'zfsload' and 'zfsls' commands
for ZFS filesystem support. ZFS pool notation syntax is in the format
'/POOLNAME/@/directory/directory/file', also explained in help output.

Initial revision given to GRUB is found:
http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/zfs-include/zfs.h

Using "either version 2 of the License, or (at your option) any later version."


Jorgen Lundman (2):
  ZFS header files
  zfs: Add ZFS filesystem support

 Makefile                     |    2 +-
 common/Makefile              |    1 +
 common/cmd_zfs.c             |  244 +++++
 fs/Makefile                  |    1 +
 fs/{ => zfs}/Makefile        |   43 +-
 fs/zfs/dev.c                 |  139 +++
 fs/zfs/zfs.c                 | 2414 ++++++++++++++++++++++++++++++++++++++++++
 fs/zfs/zfs_fletcher.c        |   84 ++
 fs/zfs/zfs_lzjb.c            |   94 ++
 fs/zfs/zfs_sha256.c          |  145 +++
 include/config_cmd_all.h     |    1 +
 include/zfs/dmu.h            |  119 +++
 include/zfs/dmu_objset.h     |   43 +
 include/zfs/dnode.h          |   80 ++
 include/zfs/dsl_dataset.h    |   52 +
 include/zfs/dsl_dir.h        |   48 +
 include/zfs/sa_impl.h        |   34 +
 include/zfs/spa.h            |  311 ++++++
 include/zfs/uberblock_impl.h |   57 +
 include/zfs/vdev_impl.h      |   69 ++
 include/zfs/zap_impl.h       |  112 ++
 include/zfs/zap_leaf.h       |  103 ++
 include/zfs/zfs.h            |  122 +++
 include/zfs/zfs_acl.h        |   55 +
 include/zfs/zfs_znode.h      |   70 ++
 include/zfs/zil.h            |   56 +
 include/zfs/zio.h            |   92 ++
 include/zfs/zio_checksum.h   |   49 +
 include/zfs_common.h         |   94 ++
 29 files changed, 4718 insertions(+), 16 deletions(-)
 create mode 100644 common/cmd_zfs.c
 copy fs/{ => zfs}/Makefile (52%)
 create mode 100644 fs/zfs/dev.c
 create mode 100644 fs/zfs/zfs.c
 create mode 100644 fs/zfs/zfs_fletcher.c
 create mode 100644 fs/zfs/zfs_lzjb.c
 create mode 100644 fs/zfs/zfs_sha256.c
 create mode 100644 include/zfs/dmu.h
 create mode 100644 include/zfs/dmu_objset.h
 create mode 100644 include/zfs/dnode.h
 create mode 100644 include/zfs/dsl_dataset.h
 create mode 100644 include/zfs/dsl_dir.h
 create mode 100644 include/zfs/sa_impl.h
 create mode 100644 include/zfs/spa.h
 create mode 100644 include/zfs/uberblock_impl.h
 create mode 100644 include/zfs/vdev_impl.h
 create mode 100644 include/zfs/zap_impl.h
 create mode 100644 include/zfs/zap_leaf.h
 create mode 100644 include/zfs/zfs.h
 create mode 100644 include/zfs/zfs_acl.h
 create mode 100644 include/zfs/zfs_znode.h
 create mode 100644 include/zfs/zil.h
 create mode 100644 include/zfs/zio.h
 create mode 100644 include/zfs/zio_checksum.h
 create mode 100644 include/zfs_common.h

^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2012-08-10 18:10 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-23  2:26 [U-Boot] [PATCH 0/2] zfs: Add filesystem ZFS support Jorgen Lundman
2012-05-23  2:26 ` [U-Boot] [PATCH 1/2] ZFS header files Jorgen Lundman
2012-05-23  2:26 ` [U-Boot] [PATCH 2/2] zfs: Add ZFS filesystem support Jorgen Lundman
2012-05-23  2:51   ` Graeme Russ
2012-05-23  3:11     ` Jorgen Lundman
2012-05-23  4:19       ` Graeme Russ
2012-05-23  7:53       ` Wolfgang Denk
2012-05-23  3:45 ` [U-Boot] [PATCH v2 0/2] zfs: Add filesystem ZFS support Jorgen Lundman
2012-05-23  7:55   ` Wolfgang Denk
2012-05-23  3:45 ` [U-Boot] [PATCH v2 1/2] ZFS header files Jorgen Lundman
2012-05-23  8:00   ` Wolfgang Denk
2012-05-23  8:10     ` Jorgen Lundman
2012-05-23  3:45 ` [U-Boot] [PATCH v2 2/2] zfs: Add ZFS support Jorgen Lundman
2012-05-23  4:21   ` Graeme Russ
2012-05-24  1:11 ` [U-Boot] [PATCH v3 0/1] zfs: Add ZFS filesystem support Jorgen Lundman
2012-05-24  1:12 ` [U-Boot] [PATCH v3 1/1] " Jorgen Lundman
2012-05-24  7:18   ` Prabhakar Lad
2012-05-24  7:57     ` Jorgen Lundman
2012-05-25  2:11 ` [U-Boot] [PATCH v4 0/1] zfs: " Jorgen Lundman
2012-05-25  2:11 ` [U-Boot] [PATCH v4 1/1] " Jorgen Lundman
2012-07-05  3:34   ` Jorgen Lundman
2012-07-05  3:45     ` Graeme Russ
2012-07-18 22:48   ` Mike Frysinger
2012-07-19  0:14     ` Jorgen Lundman
2012-07-19  1:30       ` Graeme Russ
2012-07-19  2:51       ` Mike Frysinger
2012-07-19  3:20         ` Jorgen Lundman
2012-07-19  4:12           ` Mike Frysinger
2012-07-19  4:51             ` Jorgen Lundman
2012-07-19 14:14               ` Mike Frysinger
2012-07-20  6:48 ` [U-Boot] [PATCH v5 0/1] " Jorgen Lundman
2012-07-20  6:48 ` [U-Boot] [PATCH v5 1/1] " Jorgen Lundman
2012-08-09 21:42   ` Wolfgang Denk
2012-08-10 12:07     ` Jorgen Lundman
2012-08-10 18:10       ` Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox