Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10
#include <lib/libkern/libkern.h> #include <sparc/stand/common/isfloppy.h> int bootdev_isfloppy(const char *dev) { return strncmp(dev, "fd", 2) == 0 || strstr(dev, "SUNW,fdtwo") != NULL || strstr(dev, "fdthree") != NULL; }