search for: fssize

Displaying 20 results from an estimated 54 matches for "fssize".

Did you mean: fsize
2008 Oct 29
3
resize LVM (ext3)
Hello guys, my scenario is following 1. I have LVM group named "system" 2. I have a logical volumes - system/root , ext3 mounted as / (20GB) - system/swap, swap - system/home, ext3 mounted as /home (431GB) I need to shrink system/home to 80GB (currently there is 57GB used) and use free space to create another logical volumes. My scenario is 1. reduce
2006 Feb 05
0
Add LUKS support to fstype, second version
...xt part -------------- Index: klibc/usr/kinit/fstype/fstype.c =================================================================== --- klibc.orig/usr/kinit/fstype/fstype.c 2006-02-05 10:53:51.000000000 +0100 +++ klibc/usr/kinit/fstype/fstype.c 2006-02-05 11:09:31.000000000 +0100 @@ -7,7 +7,7 @@ * FSSIZE - filesystem size (if known) * * We currently detect (in order): - * gzip, cramfs, romfs, xfs, minix, ext3, ext2, reiserfs, jfs + * gzip, cramfs, romfs, xfs, luks, minix, ext3, ext2, reiserfs, jfs * * MINIX, ext3 and Reiserfs bits are currently untested. */ @@ -29,6 +29,7 @@ #include &...
2007 Aug 15
0
[git patch] fstype support + minor stuff
...Author: maximilian attems <max at stro.at> Date: Wed Aug 15 13:28:32 2007 +0200 fstype: add gfs2 support ./gfs2_mkfs -t mycluster:mygfs -p lock_dlm -j 2 /dev/mapper/nancy_vg1-gfs2 ./usr/kinit/fstype/static/fstype /dev/mapper/nancy_vg1-gfs2 FSTYPE=gfs2 FSSIZE=0 set the fssize to zero for now. Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c index 3465676..197a259 100644 --- a/usr/kinit/fstype/fstype.c +++ b/usr/kinit/fstype/fstype.c @@ -31,6 +31,7 @@ #include...
2006 Mar 22
0
[patch] Add LVM2 detection to fstype
....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 @@ * FSSIZE - filesystem size (if known) * * We currently detect (in order): - * gzip, cramfs, romfs, xfs, luks, minix, ext3, ext2, reiserfs, jfs, swap + * gzip, cramfs, romfs, xfs, luks, lvm2, minix, ext3, ext2, reiserfs, jfs, swap * * MINIX, ext3 and Reiserfs bits are currently untested. */ @@ -3...
2006 Apr 18
0
[patch] fstype fix ext3 <-> lvm2 detection
...n <david@2gen.com> Signed-off-by: maximilian attems <maks@sternwelten.at> diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c index c892c6b..17a89ce 100644 --- a/usr/kinit/fstype/fstype.c +++ b/usr/kinit/fstype/fstype.c @@ -6,8 +6,8 @@ * FSTYPE - filesystem type * FSSIZE - filesystem size (if known) * - * We currently detect (in order): - * gzip, cramfs, romfs, xfs, luks, lvm2, minix, ext3, ext2, reiserfs, jfs, swap + * We currently detect the filesystems listed below in the struct + * "imagetype images" (in the order they are listed). * * MINIX, e...
2006 Feb 05
1
Add swap support to fstype, second version
...xt part -------------- Index: klibc/usr/kinit/fstype/fstype.c =================================================================== --- klibc.orig/usr/kinit/fstype/fstype.c 2006-02-05 11:09:31.000000000 +0100 +++ klibc/usr/kinit/fstype/fstype.c 2006-02-05 11:11:15.000000000 +0100 @@ -7,7 +7,7 @@ * FSSIZE - filesystem size (if known) * * We currently detect (in order): - * gzip, cramfs, romfs, xfs, luks, minix, ext3, ext2, reiserfs, jfs + * gzip, cramfs, romfs, xfs, luks, minix, ext3, ext2, reiserfs, jfs, swap * * MINIX, ext3 and Reiserfs bits are currently untested. */ @@ -20,6 +20,7 @@...
2019 Jan 22
1
[PATCH] fix build failure when CONFIG_KLIBC_ZLIB is not set
...rt, @@ -253,9 +257,11 @@ int ramdisk_load(int argc, char *argv[]) close(rfd); +#ifdef CONFIG_KLIBC_ZLIB if (is_gzip) err = load_ramdisk_compressed("/dev/rddev", wfd, ramdisk_start); else +#endif err = load_ramdisk_raw("/dev/rddev", wfd, ramdisk_start, fssize); -- 2.13.3
2008 Jun 16
0
latest fixes
...t /dev/mapper/dualvg0-foo /mnt/ -t ext4dev EXT4 FS on dm-12, internal journal EXT4-fs: mounted filesystem with ordered data mode. EXT4-fs: file extents enabled EXT4-fs: mballoc enabled ./usr/kinit/fstype/shared/fstype /dev/mapper/dualvg0-foo FSTYPE=ext4dev FSSIZE=1073741824 as bonus fix ext3_super_block to latest definition. Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/kinit/fstype/ext3_fs.h b/usr/kinit/fstype/ext3_fs.h index 12d64fe..f958e5c 100644 --- a/usr/kinit/fstype/ext3_fs.h +++ b/usr/kinit/fstype/ext3_f...
2007 Aug 21
1
[git patch] dmesg + fstype ocfs2
...4de8 Author: maximilian attems <max at stro.at> Date: Tue Aug 21 11:41:00 2007 +0200 fstype: add ocfs2 support mkfs.ocfs2 /dev/mapper/nancy_vg1-ocfs2 > /dev/null mkfs.ocfs2 1.2.1 ./usr/kinit/fstype/static/fstype /dev/mapper/nancy_vg1-ocfs2 FSTYPE=ocfs2 FSSIZE=0 Signed-off-by: maximilian attems <max at stro.at> diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c index 197a259..2f219e6 100644 --- a/usr/kinit/fstype/fstype.c +++ b/usr/kinit/fstype/fstype.c @@ -32,6 +32,7 @@ #include "iso9660_sb.h" #include "s...
2008 Mar 25
2
bunch of small fixes
hello hpa, nothing particular stands out, just syncing with latest Debian upload and subsequent patch emails. please review merge or nack. thanks :) maks git pull git://git.debian.org/~maks/klibc.git maks for the changes: Aaron Griffin (1): [klibc] kinit: skip md assembly if mdX exists Colin Watson (1): [klibc] mount/umount FUSE support Harald Jenny (1): [klibc] fstype:
2008 Oct 11
1
[PATCH] fstype: Fix ext4/ext4dev probing
Enhance fstype so it properly takes into account whether or not the ext4 and/or ext4dev filesystems are present, and properly handles the test_fs flag. The old code also has some really buggy checks --- for example, where it compared the set of supported ro_compat features against the incompat feature bitmask: (sb->s_feature_incompat & __cpu_to_le32(EXT3_FEATURE_RO_COMPAT_SUPP) I
2006 Nov 17
1
gjournal on 6.x wont build
Hi all, I was intending on trying out gjournal on a new disk i've added in my desktop. I had a look to see what the most recent patch provided by Pawel and found http://people.freebsd.org/~pjd/patches/gjournal6_20061024.patch I created the directories as per Pawel's original post (http://lists.freebsd.org/pipermail/freebsd-fs/2006-June/001962.html) and the patch succeeded with no failed
2010 Mar 02
17
[PATCH 00/16] External building, update for 2.6.33 and multiple root devices.
The following patchset implements 3 seperate series of changes. External Building ================= Patches 1 through 8 enable to use of klibc's build system while leaving the src tree pristine (and potentially read only). Specifically: - srctree=<Sources for klibc> - objtree=<Ouput directory for klibc> - KLIBCKERNELSRC=<Kernel sources> - KLIBCKERNELOBJ=<Kernel
2010 Dec 07
0
builder-debian libguestfs FAILED tests 4c5038ab54fb6fdff75ca8d5fdda9e73f48a5050
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...
2010 Dec 24
0
builder-debian libguestfs success 3f4dc56a32074a02b1b829bd7a91878f73022d1d
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...
2011 Jan 07
0
builder-debian libguestfs success 7e1114445e713c4a15f3f2cede5842044de1735a
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...
2010 Dec 24
1
builder-ubuntu libguestfs success 3f4dc56a32074a02b1b829bd7a91878f73022d1d
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...
2010 Dec 07
0
builder-debian libguestfs success 4b8f70d46dcfed1489c97f822e263b8615f21ea0
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...
2010 Dec 08
0
builder-ubuntu libguestfs success 4e8ad174cadf9e75401b7fa0d380d4c84c29c9ec
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...
2011 Jan 04
0
builder-debian libguestfs success 7ce627fce02eae8c7db36b4090fa0ce1bf69bf44
...unt_ro "/dev/sda1" "/" = 0 statvfs "/" = <struct guestfs_statvfs *> umount_all = 0 vfs_type "/dev/sda2" = "LVM2_member" partitions found: /dev/sda1, /dev/sda2 /dev/sda1: bootable = 0 can_expand_content = 1 expand_content_method = resize2fs fssize = 32490496 name = /dev/sda1 part_end = 33587199 part_num = 1 part_size = 33554432 part_start = 32768 type = ext2 /dev/sda2: bootable = 0 can_expand_content = 1 expand_content_method = pvresize fssize = 381681664 name = /dev/sda2 part_end = 419398143 part_num = 2 part_size = 385810944...