bios: Remove shuffle and boot comapi call
[syslinux/sherbszt.git] / libinstaller / syslxfs.h
blob4d8f3b2c85e1f111a0c7aa15113e8d579748f5fa
1 /*
2 * Copyright 2011-2012 Paulo Alcantara <pcacjr@zytor.com>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
7 * Boston MA 02111-1307, USA; either version 2 of the License, or
8 * (at your option) any later version; incorporated herein by reference.
10 * ----------------------------------------------------------------------- */
12 #ifndef _SYSLXFS_H_
13 #define _SYSLXFS_H_
15 /* Global fs_type for handling fat, ntfs, ext2/3/4, btrfs and xfs */
16 enum filesystem {
17 NONE,
18 EXT2,
19 BTRFS,
20 VFAT,
21 NTFS,
22 XFS,
25 extern int fs_type;
27 #endif /* _SYSLXFS_H_ */