Home
last modified time | relevance | path

Searched refs:bootstat (Results 1 – 1 of 1) sorted by relevance

/busybox-1.35.0/util-linux/
Dfdisk_sun.c44 struct stat bootstat; in guess_device_type() local
46 if (fstat(dev_fd, &bootstat) < 0) { in guess_device_type()
49 } else if (S_ISBLK(bootstat.st_mode) in guess_device_type()
50 && (major(bootstat.st_rdev) == IDE0_MAJOR || in guess_device_type()
51 major(bootstat.st_rdev) == IDE1_MAJOR)) { in guess_device_type()
54 } else if (S_ISBLK(bootstat.st_mode) in guess_device_type()
55 && major(bootstat.st_rdev) == FLOPPY_MAJOR) { in guess_device_type()