Newer
Older
barebox / include / partition.h
@Sascha Hauer Sascha Hauer on 21 Jul 2009 356 bytes introduce cdev
#ifndef __PARTITION_H
#define __PARTITION_H

struct device_d;

#define PARTITION_FIXED		(1 << 0)
#define PARTITION_READONLY	(1 << 1)

struct partition {
        int num;

	int flags;

        unsigned long offset;

        struct device_d *physdev;
        struct device_d device;

        char name[16];
	struct cdev cdev;
};

#endif /* __PARTITION_H */