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:
+2
-4
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user