All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: some kernel config menu suggested tweaks
@ 2003-07-24 19:10 John Bradford
  2003-07-24 19:53 ` Petr Vandrovec
  2003-07-26 12:52 ` Tomas Szepe
  0 siblings, 2 replies; 8+ messages in thread
From: John Bradford @ 2003-07-24 19:10 UTC (permalink / raw)
  To: john, rpjday; +Cc: linux-kernel

> > > 1) i mentioned this before, i think, but after one deselects
> > >    Power management, should ACPI Support and CPU Frequency
> > >    scaling still be available?
> > >
> > >    the "make xconfig" menu display suggests a submenu 
> > >    structure there, which clearly isn't the case.
> > >
> > >
> > > 2) can all of the low-level SCSI drivers be made deselectable
> > >    in one swell foop?  folks might want SCSI support just for
> > >    generic support and SCSI (ide-scsi) emulation, but have no
> > >    interest in low level SCSI drivers.
> > >
> > >    so it would be convenient to be able to select the generic
> > >    support, and yet not have to deselect low-level drivers
> > >    and PCMCIA SCSI adapter support painfully, one at a time.
> > >
> > > 3) can all of ATM support be deselected with a single click?
> > >    in the same way "PCMCIA network device support" is done just
> > >    above it under "Networking options"?
> > 
> > A lot of these add extra complications for anybody not wanting a
> > 'simple' kernel config.  _Please_ don't re-design everything the same
> > way as the once-simple filesystems menu.
> > 
> > Too much prompting is irritating for advanced users, and they are the
> > people who are likely to compiling the most kernels, rather than
> > sticking with the kernel that came with their distribution.
>
> ok, this one i *am* going to take a stand on -- you're making no
> sense whatsoever, so just put down the keyboard and step back.
>
> all of the above three suggestions are for the purpose of either
> simplifying the current menu structure or making it more consistent
> with the way the rest of the menus are presented.  none of them
> increase the complexity of *anything*.
>
> how the heck can you refer to "A lot of these" in the context
> of three suggestions?  get a grip, dude.
>
> and as the complete rookie who took it upon himself to learn
> the Kconfig structure so i could bring some order to the filesystems
> menu, well, frankly, i *like* that structure, and i haven't heard
> any complaints.  you seriously think the original structure was
> *clearer*?
>
> since i don't have the ability to actually hack down at the code
> level, i figured i could still contribute by making it easier for
> newbies like myself with simpler and more consistent menus.
> apparently, this might not be worth the effort after all.
>
> thanks ever so much for the encouragement.

It's not personal, please accept my apologies if it seemed that way,
it's just a co-incidence that the couple of things I don't like were
done by you :-).

The point I'm trying to make is that if you've been using Linux for
years, all these 'clean-ups', that might seem to make things easier
and more organised for new users, really just add extra levels of
indirection for experienced users.

The filesystem menu, for example, I could previously just skip down in
make menuconfig, selecting and deselecting what I wanted.  Now, I have
to go in and out, and in and out, just to see what's selected and
what's not.  Sure, it might look nice to a new user who doesn't like
to see a lot of options they don't necessarily understand, but it
wastes the time of more experienced users.

Oh well, I'll just go back to the:

vi .config
make oldconfig

kernel configurator.

:-(.

John.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: some kernel config menu suggested tweaks
  2003-07-24 19:10 some kernel config menu suggested tweaks John Bradford
@ 2003-07-24 19:53 ` Petr Vandrovec
  2003-07-26 12:52 ` Tomas Szepe
  1 sibling, 0 replies; 8+ messages in thread
From: Petr Vandrovec @ 2003-07-24 19:53 UTC (permalink / raw)
  To: John Bradford; +Cc: rpjday, linux-kernel

On Thu, Jul 24, 2003 at 08:10:32PM +0100, John Bradford wrote:
> 
> The filesystem menu, for example, I could previously just skip down in
> make menuconfig, selecting and deselecting what I wanted.  Now, I have
> to go in and out, and in and out, just to see what's selected and
> what's not.  Sure, it might look nice to a new user who doesn't like
> to see a lot of options they don't necessarily understand, but it
> wastes the time of more experienced users.

I think we should use "[X] OptionMenu -->" variant USB Gadgets use
where possible. Currently for example IDE code is

ATA/ATAPI/MFM/RLL support -->
    <*> ATA/ATAPI/MFM/RLL support
    IDE, ATA and ATAPI Block devices -->
        <*> Enhandced IDE/MFM/RLL disk/cdrom/...

One level can be completely removed by doing

<*> ATA/ATAPI/MFF/RLL support -->

directly in toplevel menu. Then you do not have to open most of
the menus, as if there is no checkmark before submenu entry, there is
definitely nothing selected below. 

And after all, there is also "make menuconfig MENUCONFIG_MODE=single_menu".
Unfortunately it starts with all nodes closed, and '*' (which I'm used
to use for unrolling complete subtree) does nothing. And
second problem is that "<*> XXX -->" does not work as expected in
single_menu mode, it still creates its own submenu, which kinda complicates
things.
						Best regards,
							Petr Vandrovec



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: some kernel config menu suggested tweaks
  2003-07-24 19:10 some kernel config menu suggested tweaks John Bradford
  2003-07-24 19:53 ` Petr Vandrovec
@ 2003-07-26 12:52 ` Tomas Szepe
  2003-07-26 13:07   ` Robert P. J. Day
  1 sibling, 1 reply; 8+ messages in thread
From: Tomas Szepe @ 2003-07-26 12:52 UTC (permalink / raw)
  To: John Bradford; +Cc: rpjday, linux-kernel

> [john@grabjohn.com]
> 
> The filesystem menu, for example, I could previously just skip down in
> make menuconfig, selecting and deselecting what I wanted.  Now, I have
> to go in and out, and in and out, just to see what's selected and
> what's not.  Sure, it might look nice to a new user who doesn't like
> to see a lot of options they don't necessarily understand, but it
> wastes the time of more experienced users.

I'll be sending a patch to fix up this horrid thing shortly.

-- 
Tomas Szepe <szepe@pinerecords.com>

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: some kernel config menu suggested tweaks
  2003-07-26 12:52 ` Tomas Szepe
@ 2003-07-26 13:07   ` Robert P. J. Day
  2003-07-26 13:19     ` Loading of modules fails while using kernel 2.6.0-test1 Manjunathan Padua Yellappan
  2003-07-26 14:33     ` some kernel config menu suggested tweaks Tomas Szepe
  0 siblings, 2 replies; 8+ messages in thread
From: Robert P. J. Day @ 2003-07-26 13:07 UTC (permalink / raw)
  To: Tomas Szepe; +Cc: John Bradford, linux-kernel

On Sat, 26 Jul 2003, Tomas Szepe wrote:

> > [john@grabjohn.com]
> > 
> > The filesystem menu, for example, I could previously just skip down in
> > make menuconfig, selecting and deselecting what I wanted.  Now, I have
> > to go in and out, and in and out, just to see what's selected and
> > what's not.  Sure, it might look nice to a new user who doesn't like
> > to see a lot of options they don't necessarily understand, but it
> > wastes the time of more experienced users.
> 
> I'll be sending a patch to fix up this horrid thing shortly.

i give up.  you encourage me to send in patches, then an hour
later announce that you're submitting a patch to, as i read it,
undo my previous "horrid" submission?

are you schizophrenic, or just simply a jerk?  really, enquiring
minds would like to know.

time to take a break and go to the gym.  i can't take much more
of this idiocy.

rday



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Loading of modules fails while using  kernel 2.6.0-test1
  2003-07-26 13:07   ` Robert P. J. Day
@ 2003-07-26 13:19     ` Manjunathan Padua Yellappan
  2003-07-26 13:29       ` Felipe Alfaro Solana
  2003-07-26 14:33     ` some kernel config menu suggested tweaks Tomas Szepe
  1 sibling, 1 reply; 8+ messages in thread
From: Manjunathan Padua Yellappan @ 2003-07-26 13:19 UTC (permalink / raw)
  To: linux-kernel; +Cc: manjunathan_py

Hi Folks,
  Thanks for all, for assisting me in solving the
kernel booting problem.

 Now I am encountering another problem, after
successful compilation/installation/booting of kernel
2.6.0-test1 , the modules are not loading at all ,
even after installing the latest version of
"module-init-tools-0.9.13-pre" .

Below given the error message that is display during
booting time, when kernel checks for the hardware !

"XT3 FS on hda9, internal journal
Adding 538136k swap on /dev/hda10.  Priority:-1
extents:1
kudzu: numerical sysctl 1 23 is obsolete.
warning: process `update' used the obsolete bdflush
system call
Fix your initscripts?
warning: process `update' used the obsolete bdflush
system call
Fix your initscripts?
kudzu: numerical sysctl 1 23 is obsolete.
module_upgrade: numerical sysctl 1 23 is obsolete.
module_upgrade: numerical sysctl 1 49 is obsolete.
module_upgrade: numerical sysctl 1 49 is obsolete.
kudzu: numerical sysctl 1 23 is obsolete.
updfstab: numerical sysctl 1 23 is obsolete.
updfstab: numerical sysctl 1 49 is obsolete.
updfstab: numerical sysctl 1 49 is obsolete.
kudzu: numerical sysctl 1 23 is obsolete."

Because of this, my sound card, D-link FM radio and
other periperal don't work.

Further when I execut the new lsmod command. Module
list is displayed empty.

I appreciate any asistance on this !

Thanks,
Manjunathan PY




__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Loading of modules fails while using  kernel 2.6.0-test1
  2003-07-26 13:19     ` Loading of modules fails while using kernel 2.6.0-test1 Manjunathan Padua Yellappan
@ 2003-07-26 13:29       ` Felipe Alfaro Solana
  2003-07-26 13:34         ` Manjunathan Padua Yellappan
  0 siblings, 1 reply; 8+ messages in thread
From: Felipe Alfaro Solana @ 2003-07-26 13:29 UTC (permalink / raw)
  To: Manjunathan Padua Yellappan; +Cc: LKML

On Sat, 2003-07-26 at 15:19, Manjunathan Padua Yellappan wrote:
>  Now I am encountering another problem, after
> successful compilation/installation/booting of kernel
> 2.6.0-test1 , the modules are not loading at all ,
> even after installing the latest version of
> "module-init-tools-0.9.13-pre" .

What's the output of running the following command as root:

cat /proc/sys/kernel/modprobe


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Loading of modules fails while using  kernel 2.6.0-test1
  2003-07-26 13:29       ` Felipe Alfaro Solana
@ 2003-07-26 13:34         ` Manjunathan Padua Yellappan
  0 siblings, 0 replies; 8+ messages in thread
From: Manjunathan Padua Yellappan @ 2003-07-26 13:34 UTC (permalink / raw)
  To: Felipe Alfaro Solana; +Cc: LKML

--- Felipe Alfaro Solana <felipe_alfaro@linuxmail.org>
wrote:
> On Sat, 2003-07-26 at 15:19, Manjunathan Padua
> Yellappan wrote:
> >  Now I am encountering another problem, after
> > successful compilation/installation/booting of
> kernel
> > 2.6.0-test1 , the modules are not loading at all ,
> > even after installing the latest version of
> > "module-init-tools-0.9.13-pre" .
> 
> What's the output of running the following command
> as root:
> 
> cat /proc/sys/kernel/modprobe
 
The output of the above command is

[root@localhost root]# cat /proc/sys/kernel/modprobe
/sbin/modprobe
[root@localhost root]#


Thanks,
Manjunathan PY






__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: some kernel config menu suggested tweaks
  2003-07-26 13:07   ` Robert P. J. Day
  2003-07-26 13:19     ` Loading of modules fails while using kernel 2.6.0-test1 Manjunathan Padua Yellappan
@ 2003-07-26 14:33     ` Tomas Szepe
  1 sibling, 0 replies; 8+ messages in thread
From: Tomas Szepe @ 2003-07-26 14:33 UTC (permalink / raw)
  To: Robert P. J. Day; +Cc: John Bradford, linux-kernel

> [rpjday@mindspring.com]
> 
> i give up.  you encourage me to send in patches, then an hour
> later announce that you're submitting a patch to, as i read it,
> undo my previous "horrid" submission?

A bit on the black-or-white side, aren't we today?

I'm merely thinking of turning your submenus into sub-entries
in the main fs menu, because as John has pointed out, the submenus
are rather annoying.

> are you schizophrenic, or just simply a jerk?  really, enquiring
> minds would like to know.

Damn, you really do need to take a break.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2003-07-26 14:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-24 19:10 some kernel config menu suggested tweaks John Bradford
2003-07-24 19:53 ` Petr Vandrovec
2003-07-26 12:52 ` Tomas Szepe
2003-07-26 13:07   ` Robert P. J. Day
2003-07-26 13:19     ` Loading of modules fails while using kernel 2.6.0-test1 Manjunathan Padua Yellappan
2003-07-26 13:29       ` Felipe Alfaro Solana
2003-07-26 13:34         ` Manjunathan Padua Yellappan
2003-07-26 14:33     ` some kernel config menu suggested tweaks Tomas Szepe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.