Disabled the untested filters for now.
committer: mfx <mfx> 1034617837 +0000
This commit is contained in:
parent
3b771656bb
commit
05db38225a
7
TODO
7
TODO
@ -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
|
||||
[mostly done]
|
||||
|
||||
- resync stub with UPX 1.2 branch
|
||||
[mostly done]
|
||||
|
||||
- p_ps1.cpp (ps1/exe) needs some work
|
||||
|
||||
- src/stub/l_lx_elf86.lds does not work with current binutils
|
||||
(generates a several MB file)
|
||||
[mostly done]
|
||||
|
||||
- check all <const_cast> to make sure they are not invalid
|
||||
|
||||
|
||||
@ -65,12 +65,16 @@ int const *
|
||||
PackLinuxI386elf::getFilters() const
|
||||
{
|
||||
static const int filters[] = {
|
||||
#if 1
|
||||
0x26, 0x24, 0x11, 0x14, 0x13, 0x16, 0x25, 0x15, 0x12,
|
||||
#else
|
||||
0x49, 0x46,
|
||||
0x83, 0x36, 0x26,
|
||||
0x86, 0x80,
|
||||
0x84, 0x87, 0x81,
|
||||
0x82, 0x85,
|
||||
0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12,
|
||||
#endif
|
||||
-1 };
|
||||
return filters;
|
||||
}
|
||||
|
||||
@ -63,9 +63,13 @@ const int *PackLinuxI386::getCompressionMethods(int method, int level) const
|
||||
const int *PackLinuxI386::getFilters() const
|
||||
{
|
||||
static const int filters[] = {
|
||||
#if 1
|
||||
0x26, 0x24, 0x11, 0x14, 0x13, 0x16, 0x25, 0x15, 0x12,
|
||||
#else
|
||||
0x49, 0x46,
|
||||
0x83, 0x86, 0x80, 0x84, 0x87, 0x81, 0x82, 0x85,
|
||||
0x24, 0x16, 0x13, 0x14, 0x11, 0x25, 0x15, 0x12,
|
||||
#endif
|
||||
-1 };
|
||||
return filters;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user