diff options
author | scottl <scottl@FreeBSD.org> | 2003-05-31 11:28:28 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2003-05-31 11:28:28 +0000 |
commit | f2f79e8c3fd78874b7ac71ce17f19bb9f33d3061 (patch) | |
tree | c06dcb8d11c76b020851d24a3b934b48b7a7f5e0 /usr.sbin/sysinstall/sysinstall.h | |
parent | 049e6a81c83ff5402bd64c65dc6f591e7bfb003e (diff) | |
download | FreeBSD-src-f2f79e8c3fd78874b7ac71ce17f19bb9f33d3061.zip FreeBSD-src-f2f79e8c3fd78874b7ac71ce17f19bb9f33d3061.tar.gz |
Teach sysinstall to recognize if acpi was turned off from the bootloader,
and then ask the user if this should be made permanent.
Approved by: re
Diffstat (limited to 'usr.sbin/sysinstall/sysinstall.h')
-rw-r--r-- | usr.sbin/sysinstall/sysinstall.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr.sbin/sysinstall/sysinstall.h b/usr.sbin/sysinstall/sysinstall.h index 264dc40..b2b5d21 100644 --- a/usr.sbin/sysinstall/sysinstall.h +++ b/usr.sbin/sysinstall/sysinstall.h @@ -532,6 +532,10 @@ extern int configSecurityProfile(dialogMenuItem *self); extern int configSecurityExtreme(dialogMenuItem *self); extern int configSecurityModerate(dialogMenuItem *self); extern int configEtcTtys(dialogMenuItem *self); +#ifdef __i386__ +extern int checkLoaderACPI(void); +extern int configLoaderACPI(int); +#endif /* devices.c */ extern DMenu *deviceCreateMenu(DMenu *menu, DeviceType type, int (*hook)(dialogMenuItem *d), |