applying fix from:
0000068: mount limited to max 8 loop devices (patch provided) (made minor wording change for config help message)
This commit is contained in:
@@ -132,7 +132,7 @@ extern char *find_unused_loop_device(void)
|
||||
struct stat statbuf;
|
||||
struct loop_info loopinfo;
|
||||
|
||||
for (i = 0; i <= 7; i++) {
|
||||
for (i = 0; i <= CONFIG_FEATURE_MOUNT_LOOP_MAX; i++) {
|
||||
sprintf(dev, LOOP_FORMAT, i);
|
||||
if (stat(dev, &statbuf) == 0 && S_ISBLK(statbuf.st_mode)) {
|
||||
if ((fd = open(dev, O_RDONLY)) >= 0) {
|
||||
|
Reference in New Issue
Block a user