summaryrefslogtreecommitdiff
path: root/core/include/fs.h
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2012-08-31 17:10:14 -0700
committerMatt Fleming <matt.fleming@intel.com>2012-09-04 18:49:38 +0100
commit9415cfeb0a3d641eea9c6b877278e1acbc4ee830 (patch)
tree291b389af905e91717c5d686d8ba903cdb537320 /core/include/fs.h
parent48b044fc7fc2c0ebb53c3963e9dc75629ae30414 (diff)
downloadsyslinux-9415cfeb0a3d641eea9c6b877278e1acbc4ee830.tar.gz
Create derivative-specific files
Instead of having derivative-specific code within the assembly files and guarded by %if SYSLINUX, etc move all the code to C files so that the correct get_derivative_info() function can be wired up at runtime. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'core/include/fs.h')
-rw-r--r--core/include/fs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/include/fs.h b/core/include/fs.h
index 673be38e..c648d2ad 100644
--- a/core/include/fs.h
+++ b/core/include/fs.h
@@ -199,6 +199,8 @@ void close_file(uint16_t handle);
void pm_close_file(com32sys_t *);
int open_config(void);
+extern uint16_t SectorShift;
+
/* chdir.c */
void pm_realpath(com32sys_t *regs);
size_t realpath(char *dst, const char *src, size_t bufsize);