View previous topic :: View next topic |
Author |
Message |
fuchsmi Tux's lil' helper
Joined: 11 Jun 2003 Posts: 118
|
Posted: Thu Jul 15, 2004 9:57 am Post subject: Where can I find ZLIB* in menuconfig in 2.6.x? |
|
|
I need the following config with my 2.6.7:
Code: |
[ "$CONFIG_ZLIB_INFLATE" != "y" ] && badconfig
[ "$CONFIG_ZLIB_DEFLATE" != "y" ] && badconfig
|
but I can't find the options in "make menuconfig".
You know where it is?
Michi |
|
Back to top |
|
|
DiskBreaker Apprentice
Joined: 07 Oct 2003 Posts: 224
|
Posted: Thu Jul 15, 2004 10:08 am Post subject: |
|
|
It would be but is not shown in the library routines menu...
From /usr/src/linux/lib/Kconfig:
Code: |
#
# compression support is select'ed if needed
#
config ZLIB_INFLATE
tristate
config ZLIB_DEFLATE
tristate
|
If you add a name after the tristate keyword, say:
Code: |
config ZLIB_INFLATE
tristate Zlib-Inflate
config ZLIB_DEFLATE
tristate Zlib-Deflate
| you will be able to select these two. But I'm sure there is a purpose why they are disabled...
hth,
disk |
|
Back to top |
|
|
DaMouse Apprentice
Joined: 18 Jul 2003 Posts: 233
|
Posted: Thu Jul 15, 2004 11:58 am Post subject: |
|
|
zlib was left turned on for a reason methinks as the kernel for compressed sections, it does no harm and I doubt turning it off would do anything worthwhile.
-DaMouse _________________ I am the dark lord DaMouse I eat souls and wear the dressing gown of evil. |
|
Back to top |
|
|
|