search for: 2gen

Displaying 6 results from an estimated 6 matches for "2gen".

Did you mean: 28en
2006 Apr 18
0
[patch] fstype fix ext3 <-> lvm2 detection
From: David H?rdeman <david@2gen.com> if a partition has been used as lvm2 and has not been cleared with pvremove, fstype would recognise the ext3 partition as lvm2. workaround that by detection lvm2 after ext3. Bonuspoint remove long fs list as this one just generates conflicts. Signed-off-by: David H?rdeman <david@2gen....
2006 Feb 05
0
Add LUKS support to fstype, second version
...artitions (Linux Unified Key Setup - http://luks.endorphin.org/) to fstype. This makes it easier to automatically detect and activate encrypted (root) partitions from an initramfs image. The patch is now against klibc's git tree instead of klibc-1.2. Signed-off-by: David H?rdeman <david@2gen.com> -- fstype.c | 17 ++++++++++++++++- luks_fs.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+), 1 deletion(-) -------------- next part -------------- Index: klibc/usr/kinit/fstype/fstype.c ========================================================...
2006 Mar 22
0
[patch] Add LVM2 detection to fstype
The attached patch adds the ability to fstype to detect lvm2 physical volumes (PV's). Signed-off-by: David H?rdeman <david@2gen.com> -------------- next part -------------- diff -Nur klibc-orig/usr/kinit/fstype/fstype.c klibc/usr/kinit/fstype/fstype.c --- klibc-orig/usr/kinit/fstype/fstype.c 2006-03-22 21:28:31.000000000 +0100 +++ klibc/usr/kinit/fstype/fstype.c 2006-03-23 00:54:57.000000000 +0100 @@ -7,7 +7,7 @@ *...
2006 Feb 05
1
Add swap support to fstype, second version
This patch adds support for swap detection to fstype (to be applied on top of the previous luks patch). The patch is now against klibc's git tree instead of klibc-1.2. Signed-off-by: David H?rdeman <david@2gen.com> -- fstype.c | 42 ++++++++++++++++++++++++++++++------------ swap_fs.h | 18 ++++++++++++++++++ 2 files changed, 48 insertions(+), 12 deletions(-) -------------- next part -------------- Index: klibc/usr/kinit/fstype/fstype.c =======================================================...
2005 Jul 26
1
Linux in-kernel keys support
...il.h header into the openssh src dir. Then run configure and compile. To use: First run "ssh-add -k" to add the key to the kernel keyring and then use ssh as usual...it will use any ssh keys it finds in the kernel keyring. Feedback and flames welcome. Regards, David H?rdeman david at 2gen.com -------------- next part -------------- diff -ubr -x configure openssh-4.1p1/config.h.in openssh-4.1p1-hacked/config.h.in --- openssh-4.1p1/config.h.in 2005-05-25 14:26:09.000000000 +0200 +++ openssh-4.1p1-hacked/config.h.in 2005-07-25 23:18:17.000000000 +0200 @@ -694,6 +694,9 @@ /* Define to...
2006 Jul 05
0
[PATCH] Do LUKS detection later in fstype
Similarly to the fix which was applied earlier which moved LVM detection to the bottom of the list in fstype, we also need to move luks detection to the end of the list since a LUKS signature leftover could co-exist with a regular fs. Regards, David -------------- next part -------------- diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c index cea219e..89203e1 100644 ---