On Thu, Mar 05, 1998 at 02:44:58PM -0700, Troy D. Taylor wrote:
> My software company is currently limited to using RedHat 4.2 due to the
> fact that some of the software we run is currently unsupported by 5.0. I
> am setting up a dual pent. II and need to know:
>
> 1) Should I compile the kernal to run as a Pent (686) or a PPro in the make
> config?
You should compile the kernel to run as a Pentium Pro.
>
> 2) How do I go about enabling the SMP (scalable multiple processors?) for
> redhat 4.2?
Two choices...if you like changing Makefiles you can uncomment the line in
the Makefile that reads SMP = 1 to turn on SMP. You can also pass the flag
to all of your make commands (I'm not sure which ones rely on it, so pass it
to everything to be careful.
So, try something like this...
make SMP=1 dep && make SMP=1 clean && make $* SMP=1 bzImage && \
make $* SMP=1 modules
if [ -x /sbin/installkernel ]; then
/sbin/installkernel 2.0.33 arch/i386/boot/bzImage System.map
else
make $* SMP=1 bzlilo
fi
make $* SMP=1 modules_install
...again, your probably better off just uncommenting the line in the Makefile.
> Thanks for your time!
Your welcome...
-Sam
--
Samuel Ockman | Work Linux? | VA Research
Director of Software | Work with us. | Proud Corporate
(650) 934-3666 ext. 133 | e-mail jobs@ | Sponsor of Guerilla
| varesearch.com | Linux Development
--
PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES!
http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists
To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject.