Re: [U-Boot] [PATCH] Fix ext2/ext4 filesystem accesses beyond 2TiB

2013-06-25 Thread Sascha Silbe
Frederic Leroy writes: [...] > disk/part_efi.c| 4 ++-- While testing the CuBox patches using buildman, I noticed a warning in disk/part_iso.c. The following patch should fix it: diff --git a/disk/part_iso.c b/disk/part_iso.c index cc323b0..e15e1b9 100644 --- a/disk/part_iso.c +++ b/di

[U-Boot] [PATCH] Fix ext2/ext4 filesystem accesses beyond 2TiB

2013-06-24 Thread Frederic Leroy
From: Frédéric Leroy With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type, which is required to represent block numbers for storage devices that exceed 2TiB (the block size usually is 512B), e.g. recent hard drives We now use lbaint_t for partition offset to reflect the lbaint_t cha

Re: [U-Boot] [PATCH] Fix ext2/ext4 filesystem accesses beyond 2TiB

2013-06-24 Thread Sascha Silbe
Frederic Leroy writes: > From: Frédéric Leroy > > With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type, > which is required to represent block numbers for storage devices that > exceed 2TiB (the block size usually is 512B), e.g. recent hard drives > > We now use lbaint_t for partiti

[U-Boot] [PATCH] Fix ext2/ext4 filesystem accesses beyond 2TiB

2013-06-24 Thread Frederic Leroy
From: Frédéric Leroy With CONFIG_SYS_64BIT_LBA, lbaint_t gets defined as a 64-bit type, which is required to represent block numbers for storage devices that exceed 2TiB (the block size usually is 512B), e.g. recent hard drives We now use lbaint_t for partition offset to reflect the lbaint_t cha