Disabled the untested filters for now.

committer: mfx <mfx> 1034617837 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2002-10-14 17:50:37 +00:00
parent 3b771656bb
commit 05db38225a
3 changed files with 11 additions and 4 deletions
+3 -4
View File
@@ -1,15 +1,14 @@
UPX TODO list. Last updated 2002-07-16. UPX TODO list. Last updated 2002-10-14.
- rotten code, bring back to life and resync with UPX 1.2 branch - rotten code, bring back to life and resync with UPX 1.2 branch
[mostly done] [mostly done]
- resync stub with UPX 1.2 branch - resync stub with UPX 1.2 branch
[mostly done]
- p_ps1.cpp (ps1/exe) needs some work - p_ps1.cpp (ps1/exe) needs some work
[mostly done]
- src/stub/l_lx_elf86.lds does not work with current binutils
(generates a several MB file)
- check all <const_cast> to make sure they are not invalid - check all <const_cast> to make sure they are not invalid
+4
View File
@@ -65,12 +65,16 @@ int const *
PackLinuxI386elf::getFilters() const PackLinuxI386elf::getFilters() const
{ {
static const int filters[] = { static const int filters[] = {
#if 1
0x26, 0x24, 0x11, 0x14, 0x13, 0x16, 0x25, 0x15, 0x12,
#else
0x49, 0x46, 0x49, 0x46,
0x83, 0x36, 0x26, 0x83, 0x36, 0x26,
0x86, 0x80, 0x86, 0x80,
0x84, 0x87, 0x81, 0x84, 0x87, 0x81,
0x82, 0x85, 0x82, 0x85,
0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12, 0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12,
#endif
-1 }; -1 };
return filters; return filters;
} }
+4
View File
@@ -63,9 +63,13 @@ const int *PackLinuxI386::getCompressionMethods(int method, int level) const
const int *PackLinuxI386::getFilters() const const int *PackLinuxI386::getFilters() const
{ {
static const int filters[] = { static const int filters[] = {
#if 1
0x26, 0x24, 0x11, 0x14, 0x13, 0x16, 0x25, 0x15, 0x12,
#else
0x49, 0x46, 0x49, 0x46,
0x83, 0x86, 0x80, 0x84, 0x87, 0x81, 0x82, 0x85, 0x83, 0x86, 0x80, 0x84, 0x87, 0x81, 0x82, 0x85,
0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12, 0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12,
#endif
-1 }; -1 };
return filters; return filters;
} }