If this isn't exactly what you wanted, please try our Search (there's a LOT of techy and non-techy stuff here about Linux, Unix, Mac OS X and just computers in general!):
From belal@sco.com Mon Sep 8 07:49:48 2003 Newsgroups: comp.unix.sco.misc Path: nntp.TheWorld.com!newsfeed.mathworks.com!arclight.uoregon.edu!logbridge.uoregon.edu!newsfeed.stanford.edu!enigma.xenitec.on.ca!not-for-mail From: Bela Lubkin <belal@sco.com> Subject: Re: Running OSR5.0.7 on older Compaq ProLiant Resent-From: mmdf@xenitec.on.ca Submit-To: scomsc@xenitec.on.ca Content-Type: text/plain; charset=us-ascii Organization: [resent by] The SCOMSC gateway and Propagation Society Content-Disposition: inline Date: Mon, 8 Sep 2003 07:35:31 GMT Message-ID: <a href="http://groups.google.com/groups?selm=<20030908073531.GC24551@sco.com>"><<20030908073531.GC24551@sco.com>></a> User-Agent: Mutt/1.4.1i-nntp3 To: scomsc@xenitec.ca Mime-Version: 1.0 In-Reply-To: <3f5bf5f2$1@dnews.tpgi.com.au> X-Nntp-Posting-Host: enigma.xenitec.on.ca Originator: news@enigma.xenitec.on.ca (News subsystem owner) References: <a href="http://groups.google.com/groups?selm=<3F5BCE03.E42857BC@tkg.ca>"><<3F5BCE03.E42857BC@tkg.ca>></a> <a href="http://groups.google.com/groups?selm=<3f5bf5f2$1@dnews.tpgi.com.au>"><<3f5bf5f2$1@dnews.tpgi.com.au>></a> Sender: news@enigma.xenitec.ca (News subsystem owner) Precedence: list Lines: 76 Xref: nntp.TheWorld.com comp.unix.sco.misc:163100 Stuart J. Browne wrote: > "Mike Brown" <mike@tkg.ca> wrote in message > news:3F5BCE03.E42857BC@tkg.ca... > > Thanks to Bela and JPR, here is how to run 5.0.7 on > > an older Compaq such as the 800/1200/1500/1600/2500 series > > servers. In other words all pre-CASM servers that > > require EFS5.48 or earlier. > > > > Load 5.0.7 and patches such as MP1. > > > > #cd /etc/conf/pack.d/pci > > #cp -p Driver.o Driver.o.orig > > strings -a -o Driver.o | grep -i debug > > 18782 pci_debug > > # echo pci_Debug | dd bs=1 count=9 oseek=18782 conv=notrunc of=Driver.o > > Umm, is that supposed to be a 'D' ? or a 'd'?
big 'D'. The purpose of the patch is to rename a symbol in the OSR5 PCI driver so that it doesn't conflict with a symbol of the same name in one of the Compaq EFS drivers. > > 9+0 records in > > 9+0 records out > > # strings -a -o Driver.o | grep -i debug > > 18782 pci_Debug > > # cd /etc/conf/cf.d > > # ./link_unix > > > > Reboot, then load EFS5.48 as usual. Here's a script that does this more safely and automatically. >Bela< DIR=/etc/conf/pack.d/pci cd $DIR set -- `strings -a -o Driver.o | grep -i ' pci_debug$'`
if [ $# -eq 0 ]; then echo $DIR/Driver.o does not require patching. exit 0 fi if [ $2 = pci_Debug ]; then echo $DIR/Driver.o is already patched. exit 0 fi if [ -f Driver.o.orig ]; then echo $DIR/Driver.o.orig already exists, aborting. 1>&2 exit 1 fi cp -p Driver.o Driver.o.orig if echo pci_Debug | dd bs=1 count=9 oseek=$1 conv=notrunc of=Driver.o 2>/dev/null; then echo $DIR/Driver.o successfully patched. exit 0 else echo $DIR/Driver.o was not successfully patched. 1>&2 mv -f Driver.o.orig Driver.o exit 1 fi =============================================================================
/Bofcusm/2326.html copyright 1997-2004 (various authors) All Rights Reserved
Have you tried Searching this site?
Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates
This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.
Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.
Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.
We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.
Click here to add your comments
Don't miss responses! Subscribe to Comments by RSS or by Email
Click here to add your comments
If you want a picture to show with your comment, go get a Gravatar