home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 May / pcp151c.iso / misc / src / install / lilo.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-05  |  397 b   |  17 lines

  1. #ifndef H_LILO
  2. #define H_LILO
  3.  
  4. #include "hd.h"
  5. #include "fs.h"
  6.  
  7. #define        LILO_ON_MBR        (1 << 0)
  8. #define        LILO_ON_PARTITION    (1 << 1)
  9. #define        LILO_USE_LINEAR        (1 << 2)
  10. #define        LILO_USE_OPTIONS    (1 << 3)
  11.  
  12. int installLilo(char * prefix, struct partitionTable table, struct fstab fstab,
  13.         char * kernelVersion, int flags, char * options);
  14. int makeBootdisk(char * prefix, char * kernelVersion);
  15.  
  16. #endif
  17.