-
Notifications
You must be signed in to change notification settings - Fork 53
Open
Description
Hi,
Similar to #64, size calculation is wrong on a Raspberry Pi B+. FiveGb size is 1073741824.
Debug source code :
// check consistency
const unsigned long FiveGb = (unsigned long)5 * (unsigned long)(1 << 30);
if (segment_above > FiveGb)
{
printf ("A segment cannot be larger than 5Gb %lu\n",FiveGb);
return 1;
}
Result :
# hubicfuse /mnt/hubic -o noauto_cache,sync_read,allow_other
A segment cannot be larger than 5Gb 1073741824
Why don't you set 5368709120 value to FiveGb ?
Best regards.
Metadata
Metadata
Assignees
Labels
No labels