| 440 | } |
| 441 | |
| 442 | int check_linux(disk_t *disk, partition_t *partition, const int verbose) |
| 443 | { |
| 444 | #if !defined(DISABLED_FOR_FRAMAC) |
| 445 | if(check_JFS(disk, partition)==0 || |
| 446 | check_rfs(disk, partition, verbose)==0 || |
| 447 | check_EXT2(disk, partition, verbose)==0 || |
| 448 | check_cramfs(disk, partition, verbose)==0 || |
| 449 | check_xfs(disk, partition, verbose)==0 || |
| 450 | check_LUKS(disk, partition)==0 || |
| 451 | check_btrfs(disk, partition)==0 || |
| 452 | check_f2fs(disk, partition)==0 || |
| 453 | check_gfs2(disk, partition)==0 || |
| 454 | check_ZFS(disk, partition)==0) |
| 455 | return 0; |
| 456 | #endif |
| 457 | return 1; |
| 458 | } |
| 459 |
no test coverage detected