All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] x86: Cleanup prose of Documentation/i386/IO-APIC.txt
@ 2008-04-11 15:40 Nick Andrew
  2008-04-13  8:45 ` Ingo Molnar
  0 siblings, 1 reply; 6+ messages in thread
From: Nick Andrew @ 2008-04-11 15:40 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: Linux Kernel Mailing List

I'm doing a couple of cleanups to Documentation/i386/IO-APIC.txt
and I have a problem with this line, which is supposed to compute
a sample pirq= kernel parameter:

   echo -n pirq=; echo `scanpci | grep T_L | cut -c56-` | sed 's/ /,/g'

The 'scanpci' command used to be part of xutils and/or XFree86.
Xorg implements "Xorg -scanpci" but the output is different and it won't
run while X is running.

Firstly I propose using the $( ) construct rather than backticks, since
it is easier to read:

   echo -n pirq=; echo $( scanpci | grep T_L | cut -c56- ) | sed 's/ /,/g'

Inside the backtics, instead of scanpci, I could do:

   lspci -v | grep IRQ | sed -e 's/.* IRQ \(\w\+\)/\1/'

Is this an acceptable substitution?

Nick.
-- 
PGP Key ID = 0x418487E7                      http://www.nick-andrew.net/
PGP Key fingerprint = B3ED 6894 8E49 1770 C24A  67E3 6266 6EB9 4184 87E7

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

end of thread, other threads:[~2008-04-14 10:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-11 15:40 [RFC] x86: Cleanup prose of Documentation/i386/IO-APIC.txt Nick Andrew
2008-04-13  8:45 ` Ingo Molnar
2008-04-13 11:25   ` Nick Andrew
2008-04-14  9:46     ` Ingo Molnar
2008-04-14 10:17       ` Nick Andrew
2008-04-14 10:28         ` Ingo Molnar

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.