Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place! |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
05-30-2012, 06:36 AM
|
#1
|
Senior Member
Registered: Dec 2008
Posts: 4,732
|
ACPI (Advanced Configuration And Power Configuration) not present on 2.6.38.8?
I need to disable some parts in ACPI, but it is
simply not present in kernel 2.6.38.8 (downloaded
as a tar from net)?
I can see the option in kernel 2.6.34-12 (default
on OpenSuse 11.3), but not in the other one.
What's the point that I am missing?
P.S.
Screen shots are from kernel 2.6.38.8.
Last edited by Aquarius_Girl; 02-16-2015 at 11:57 PM.
|
|
|
05-30-2012, 06:53 AM
|
#2
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,381
Rep: 
|
Unfortunately, your screenshots are unreadable (the resolution is too low).
Anyhow, of course ACPI is available in 2.6.38.8 vanilla kernel.
Did you get yours directly from kernel.org?
If not try this link.
PS I am downloading it myself to double-check.
Last edited by Didier Spaier; 05-30-2012 at 06:56 AM.
|
|
|
05-30-2012, 06:57 AM
|
#3
|
Senior Member
Registered: Dec 2008
Posts: 4,732
Original Poster
|
This is the command I had issued to get that tar:
wget -c http://www.kernel.org/pub/linux/kern....6.38.8.tar.gz
The screen shots are very readable to me. I checked again.
Try opening them in a new tab, please.
|
|
|
05-30-2012, 07:08 AM
|
#4
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,381
Rep: 
|
This should be the same archive, only the compression method differ... 83% downloaded now, will tell you what I come up with.
Oh and for the screenshots you are right, I did a "save as" instead, my fault.
|
|
|
05-30-2012, 07:10 AM
|
#5
|
Senior Member
Registered: Dec 2008
Posts: 4,732
Original Poster
|
Update:
From unix.stackexchange someone told me that disabling
PCI can totally hide the ACPI option. I now enabled PCI
and therefore I can see ACPI.
Thanks anyways for the effort of downloading, Didier.
Last edited by Aquarius_Girl; 05-30-2012 at 07:13 AM.
|
|
|
05-30-2012, 07:17 AM
|
#6
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,381
Rep: 
|
You are welcome.
For the records, it is said in the config help for ACPI as well:
Code:
Defined at drivers/acpi/Kconfig:5 │
│ Depends on: !IA64_HP_SIM && (IA64 || X86 [=y]) && PCI [=y] && PM [=y] │
│ Location: │
│ -> Power management and ACPI options │
│ Selects: PNP [=y]
|
|
1 members found this post helpful.
|
05-30-2012, 07:25 AM
|
#7
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,381
Rep: 
|
Last word about that: you probably know that already but even though the menuconfig entry for ACPI doesn't show if PCI is disabled, you can still access the help for it searching ("/") for ACPI.
|
|
|
05-30-2012, 07:30 AM
|
#8
|
Senior Member
Registered: Dec 2008
Posts: 4,732
Original Poster
|
"/" ACPI search results in:
Code:
Symbol: ACPI_AC [=m] │
│ Prompt: AC Adapter │
│ Defined at drivers/acpi/Kconfig:125 │
│ Depends on: !XEN_UNPRIVILEGED_GUEST [=n] && ACPI [=y] && X86 [=y] │
│ Location: │
│ -> Power management and ACPI options │
│ -> ACPI (Advanced Configuration and Power Interface) Support (ACPI [=y])
With PCI disabled (due to my ignorance) ACPI
search won't be too helpful? Or will it be?
|
|
|
05-30-2012, 07:52 AM
|
#9
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,381
Rep: 
|
Here with PCI disabled, "/" ACPI_AC results in:
Code:
Symbol: ACPI_AC [=y] │
│ Type : tristate │
│ Prompt: AC Adapter │
│ Defined at drivers/acpi/Kconfig:124 │
│ Depends on: ACPI [=y] && X86 [=y] │
│ Location: │
│ -> Power management and ACPI options │
│ -> ACPI (Advanced Configuration and Power Interface) Support (ACPI [=y]) │
│ Selects: POWER_SUPPLY [=y]
But "/" ACPI results in a bunch of entries, among which:
Code:
Symbol: ACPI [=n] │
│ Type : boolean │
│ Prompt: ACPI (Advanced Configuration and Power Interface) Support │
│ Defined at drivers/acpi/Kconfig:5 │
│ Depends on: !IA64_HP_SIM && (IA64 || X86 [=y]) && PCI [=n] && PM [=y] │
│ Location: │
│ -> Power management and ACPI options │
│ Selects: PNP [=n]
I append my .config so you can check by yourself.
I didn't reuse an old .config, thus the only config option I did set up myself is PCI support disabled.
Last edited by Didier Spaier; 08-15-2015 at 05:41 PM.
|
|
|
All times are GMT -5. The time now is 03:11 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|