opuntiaOS - an operating system targeting x86 and ARMv7
at master 347 B view raw
1#ifndef _KERNEL_LIBKERN_VERSION_H 2#define _KERNEL_LIBKERN_VERSION_H 3 4#define OSTYPE "opuntiaOS" 5#define OSRELEASE "1.0.0-dev" 6#define VERSION_MAJOR 1 7#define VERSION_MINOR 0 8#define VERSION_REVISION 0 9#define VERSION_VARIANT "0" 10 11#ifdef __i386__ 12#define MACHINE "x86" 13#elif __arm__ 14#define MACHINE "arm" 15#endif 16 17#endif // _KERNEL_LIBKERN_VERSION_H