Rewrote the new vmlinuz/i386 format in a more object-oriented way. This

should hopefully also help adding support for filters and other
things.

committer: mfx <mfx> 976723821 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2000-12-13 16:10:21 +00:00
parent d266c6bff1
commit 04c3173ef3
7 changed files with 197 additions and 87 deletions
+2 -4
View File
@@ -174,11 +174,9 @@ static Packer* try_packers(InputFile *f, try_function func)
return p;
if ((p = func(new PackLinuxI386sh(f),f)) != NULL)
return p;
#if 0
if ((p = func(new PackBvmlinuxI386(f),f)) != NULL)
if ((p = func(new PackBvmlinuzI386(f),f)) != NULL)
return p;
#endif
if ((p = func(new PackvmlinuzI386(f),f)) != NULL)
if ((p = func(new PackVmlinuzI386(f),f)) != NULL)
return p;
if ((p = func(new PackLinuxI386(f),f)) != NULL)
return p;