Displaying 9 results from an estimated 9 matches for "diskfs".
Did you mean:
disk's
2011 Apr 01
1
[GIT PULL] elflink core
Hi,
I recently ran into an issue where the dependencies generated in
modules.dep created a circular reference, which meant that qemu spun
forever in modules_load_dependencies().
I did think about detecting this kind of circular dependency at
modules.dep generation time but if we ever move to using DT_NEEDED to
track dependencies we would need this functionality in the elflink core
anyway.
2012 Jul 16
5
[PATCH 0/5] Deleting __intcall() from Syslinux
...ules/gpxecmd.c | 11 +---
com32/modules/pxechn.c | 16 +----
com32/modules/sanboot.c | 11 +---
com32/samples/resolv.c | 17 +----
core/comboot.inc | 1 +
core/console.c | 7 +--
core/diskfs.inc | 2 +-
core/elflink/advwrite.c | 45 -------------
core/elflink/setadv.c | 116 ---------------------------------
core/font.c | 4 +-
core/fs/pxe/pxe.c | 7 +--
core/fs/pxe/pxe.h...
2012 Aug 14
1
[GIT PULL] elflink fixes
...2/modules/sanboot.c | 11 +---
com32/rosh/Makefile | 4 +-
com32/samples/Makefile | 5 +-
com32/samples/resolv.c | 17 +----
core/comboot.inc | 1 +
core/console.c | 7 +--
core/diskfs.inc | 2 +-
core/elflink/advwrite.c | 45 -------------
core/elflink/load_env32.c | 19 +-----
core/elflink/setadv.c | 116 ---------------------------------
core/font.c | 4 +-
core/fs/pxe/pxe.c...
2014 May 29
0
[PATCH 2/2] core/fs: Add support for Unix File system 1/2.
...#endif /* _UFS_H_ */
diff --git a/core/ldlinux.asm b/core/ldlinux.asm
index a1f96b7..050f503 100644
--- a/core/ldlinux.asm
+++ b/core/ldlinux.asm
@@ -43,6 +43,8 @@ ROOT_FS_OPS:
dd xfs_fs_ops
extern btrfs_fs_ops
dd btrfs_fs_ops
+ extern ufs_fs_ops
+ dd ufs_fs_ops
dd 0
%include "diskfs.inc"
--
1.7.2.5
2013 Jul 12
1
[PATCH 001/001] core/fs: Add support to Unix File system 1/2.
...#endif /* _UFS_H_ */
diff --git a/core/ldlinux.asm b/core/ldlinux.asm
index a1f96b7..050f503 100644
--- a/core/ldlinux.asm
+++ b/core/ldlinux.asm
@@ -43,6 +43,8 @@ ROOT_FS_OPS:
dd xfs_fs_ops
extern btrfs_fs_ops
dd btrfs_fs_ops
+ extern ufs_fs_ops
+ dd ufs_fs_ops
dd 0
%include "diskfs.inc"
--
1.7.2.5
2014 May 29
3
[PATCH 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com>
Wrote the documentation below. I think it would be good to push the doc to
the wiki as soon as the UFS support gets merged.
Unix Fast File System (UFS/FFS) 1/2 on Syslinux - (usage/install)
-----
There is a confusion about the name of this file system, then I decided to
contact the author who replied:
"The name has always been
2014 May 29
3
[PATCH v2 0/2] UFS1/2 support series
From: Raphael S. Carvalho <raphael.scarv at gmail.com>
Change since v1:
* Fix bug on dentry structure (thank you specification; btw, sarcasm), and
consequently a bug on ufs_readdir.
* Add readlink support (applied tests for symlinks whose destionation path
were stored in blk pointers and the file itself).
* Several improvements.
Wrote the documentation below. I think it would be good to
2006 Sep 11
95
Proposal: multiple copies of user data
Here is a proposal for a new ''copies'' property which would allow
different levels of replication for different filesystems.
Your comments are appreciated!
--matt
A. INTRODUCTION
ZFS stores multiple copies of all metadata. This is accomplished by
storing up to three DVAs (Disk Virtual Addresses) in each block pointer.
This feature is known as "Ditto Blocks". When
2006 Sep 11
95
Proposal: multiple copies of user data
Here is a proposal for a new ''copies'' property which would allow
different levels of replication for different filesystems.
Your comments are appreciated!
--matt
A. INTRODUCTION
ZFS stores multiple copies of all metadata. This is accomplished by
storing up to three DVAs (Disk Virtual Addresses) in each block pointer.
This feature is known as "Ditto Blocks". When