Implement syslinux parser.

This commit is contained in:
Vladimir Serbinenko 2013-12-18 05:28:05 +01:00
parent 8ff35d0a1b
commit 8f5add13ff
10 changed files with 2116 additions and 58 deletions

View file

@ -1761,6 +1761,7 @@ module = {
common = normal/term.c;
common = normal/context.c;
common = normal/charset.c;
common = lib/getline.c;
common = script/main.c;
common = script/script.c;
@ -2142,6 +2143,12 @@ module = {
enable = xen;
};
module = {
name = syslinuxcfg;
common = lib/syslinux_parse.c;
common = commands/syslinuxcfg.c;
};
module = {
name = test_blockarg;
common = tests/test_blockarg.c;