aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2013-06-10 14:09:24 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2013-06-24 11:57:18 -0700
commitddd5b71be1600aa323435351a82327acadc3d536 (patch)
tree6be46551fda9c4091a7441654c23c1670f052090
parent4ff8fcac8e7b5046987dee15592ab510ab343aa8 (diff)
downloadsyslinux-ddd5b71be1600aa323435351a82327acadc3d536.tar.gz
syslinux-ddd5b71be1600aa323435351a82327acadc3d536.tar.xz
syslinux-ddd5b71be1600aa323435351a82327acadc3d536.zip
core: remove unused header file vkernel.inc
vkernel.inc is related to the old assembly-based config file parser; it is no longer relevant. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r--core/head.inc1
-rw-r--r--core/vkernel.inc35
2 files changed, 0 insertions, 36 deletions
diff --git a/core/head.inc b/core/head.inc
index 286b9b4e..71eb5744 100644
--- a/core/head.inc
+++ b/core/head.inc
@@ -34,6 +34,5 @@
%include "tracers.inc"
%include "stack.inc"
%include "io.inc"
-%include "vkernel.inc"
%endif ; _HEAD_INC
diff --git a/core/vkernel.inc b/core/vkernel.inc
deleted file mode 100644
index 278344e4..00000000
--- a/core/vkernel.inc
+++ /dev/null
@@ -1,35 +0,0 @@
-;; -----------------------------------------------------------------------
-;;
-;; Copyright 1994-2008 H. Peter Anvin - All Rights Reserved
-;; Copyright 2009-2011 Intel Corporation; author: H. Peter Anvin
-;;
-;; This program is free software; you can redistribute it and/or modify
-;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
-;; Boston MA 02110-1301, USA; either version 2 of the License, or
-;; (at your option) any later version; incorporated herein by reference.
-;;
-;; -----------------------------------------------------------------------
-
-%ifndef _VKERNEL_INC
-%define _VKERNEL_INC
-
-;
-; The following structure is used for "virtual kernels"; i.e. LILO-style
-; option labels. The options we permit here are `kernel' and `append
-; Since there is no room in the bottom 64K for all of these, we
-; stick them in high memory and copy them down before we need them.
-;
- struc vkernel
-vk_vname: resb FILENAME_MAX ; Virtual name **MUST BE FIRST!**
-vk_rname: resb FILENAME_MAX ; Real name
-vk_sysappend: resd 1 ; Sysappend option
-vk_appendlen: resw 1
-vk_type: resb 1 ; Type of file
- alignb 4
-vk_append: resb max_cmd_len+1 ; Command line
- alignb 4
-vk_end: equ $ ; Should be <= vk_size
- endstruc
-
-%endif ; _VKERNEL_INC