Mailinglist Archive: opensuse (2234 mails)

< Previous Next >
RE: [SLE] Tools/programs to burn-in new motherboard/system
  • From: MHE@xxxxxxxxxx (Maurice Hendrix)
  • Date: Fri, 3 Sep 1999 11:50:55 +0200
  • Message-id: <006463B66B06D311B6320000F824313B0100479E@xxxxxxxxxxxxxxxxx>



> ----------
> From: stuarthall@xxxxxxxxxxxxxxx[SMTP:stuarthall@xxxxxxxxxxxxxxx]
> Reply To: stuarthall@xxxxxxxxxxxxxxx
> Sent: 02 September 1999 20:35
> To: MHE@xxxxxxxxxxxxxxxxx
> Subject: [SLE] Tools/programs to burn-in new motherboard/system
>
[blabla...]
> I have seen the following, in a tcsh file, but the original tcsh code
> doesn't work on my system (I forget the error and the exact code).
> I'd like help to re-write the following pseudo-code in bash:
>
> #!/bash
> for i 1 to 100
> for j 1 to 100
> make -j3 bzImage
> next j
> next i
>
>Frommemory:

#! /bin/bash
cd /usr/src/linux
make dep
#append other make targets (clean,, etc.) here to prepare the source tree
# for this exercise
while true
do clear
make -j3 bzImage
done

Maybe you want to put extra make dep, make clean etc. inside the do...done
loop to clean out the source tree before every new make.

> Thanks!
> Stuart
> ----
> Stuart Hall
> Connecticut, USA
> stuarthall@xxxxxxxxxxxxxxx
>
> --
> To unsubscribe send e-mail to suse-linux-e-unsubscribe@xxxxxxxx
> For additional commands send e-mail to suse-linux-e-help@xxxxxxxx
>
> Also check the FAQ at http://www.suse.com/Support/Doku/FAQ/
>

--
To unsubscribe send e-mail to suse-linux-e-unsubscribe@xxxxxxxx
For additional commands send e-mail to suse-linux-e-help@xxxxxxxx
Also check the FAQ at http://www.suse.com/Support/Doku/FAQ/

< Previous Next >