public inbox for linux-8086@vger.kernel.org
 help / color / mirror / Atom feed
* Re: Compiling 0.13pre1
@ 2004-01-15 22:19 Tommy McCabe
  2004-01-18 20:55 ` Per Ola Ingvarsson
  0 siblings, 1 reply; 4+ messages in thread
From: Tommy McCabe @ 2004-01-15 22:19 UTC (permalink / raw)
  To: linux-8086


--- Tommy McCabe <rocketjet314@yahoo.com> wrote:
> 
> --- Javier Sedano <javier.sedano@agora-2000.com>
> wrote:
> > Hi there,
> > 
> > 	I don't know what's the error, but be aware that
> it
> > may not mean a file 
> > called "system", but the "filesystem" (the "system
> > of files"; maybe you 
> > did not said YES to minixfs when configuring the
> > kernel.
> > 
> > Reagrds,
> 
> I did select the Minix filesystem, and no others, in
> the configuration. Here's the error message:
> 
> 
> (cd ../.. ; ld86 -0 -i   \
>         arch/i86/boot/crt0.o arch/i86/boot/crt1.o \
>         init/main.o kernel/kernel.a fs/fs.a
> lib/lib.a
> net/net.a fs/minix/minixfs.a
> arch/i86/kernel/akernel.a
> arch/i86/lib/lib86.a arch/i86/mm/mm.a 
> arch/i86/drivers/char/chr_drv.a
> arch/i86/drivers/block/blk_drv.a \
>         -t -M -o arch/i86/boot/system > System.tmp ;
> \
>         sort -k4 System.tmp > System.map ; rm -f
> System.tmp )
> usage: ld86 [-03NMdimrstz[-]] [-llib_extension] [-o
> outfile] [-Ccrtfile]
>        [-Llibdir] [-Olibfile] [-Ttextaddr]
> [-Ddataaddr] [-Hheapsize] infile...
> tools/build boot/bootsect boot/setup boot/system >
> boot/Image
> Root device is (3, -128)
> Boot sector 512 bytes.
> Setup is 1596 bytes.
> Unable to open 'system'
> make[1]: *** [Image] Error 1
> 
> 
> > Tommy McCabe wrote:
> > > When I run make Image, after make config and
> make
> > dep,
> > > I get an error when it tries to make the boot
> > image
> > > that file 'system' is missing. What's wrong?
> > > 
> > > __________________________________
> > > Do you Yahoo!?
> > > Yahoo! Hotjobs: Enter the "Signing Bonus"
> > Sweepstakes
> > >
> http://hotjobs.sweepstakes.yahoo.com/signingbonus
> > > -
> > > To unsubscribe from this list: send the line
> > "unsubscribe linux-8086" in
> > > the body of a message to
> majordomo@vger.kernel.org
> > > More majordomo info at 
> > http://vger.kernel.org/majordomo-info.html
> > > 
> > 
> > -- 
> > Javier Sedano Jarillo:
> javier.sedano@agora-2000.com
> >                        
> > (http://www.it.uc3m.es/~jsedano)
> > Network&Systems Engineer
> > Agora Systems, S.A.
> > C/Aravaca 12
> > E-28040 Madrid (Spain)
> > Tel.: +34 91 533 58 57
> > Fax.: +34 91 534 84 77
> > --------
> > Mammmyyy, where is the man page fot the candle?
> > 
> > -
> > To unsubscribe from this list: send the line
> > "unsubscribe linux-8086" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at 
> http://vger.kernel.org/majordomo-info.html
> 
> __________________________________
> Do you Yahoo!?
> Yahoo! Hotjobs: Enter the "Signing Bonus"
> Sweepstakes
> http://hotjobs.sweepstakes.yahoo.com/signingbonus
> 

__________________________________
Do you Yahoo!?
Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes
http://hotjobs.sweepstakes.yahoo.com/signingbonus

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Compiling 0.13pre1
  2004-01-15 22:19 Compiling 0.13pre1 Tommy McCabe
@ 2004-01-18 20:55 ` Per Ola Ingvarsson
  2004-01-18 21:45   ` Patch for compiling with 0.16.14 Per Ola Ingvarsson
  0 siblings, 1 reply; 4+ messages in thread
From: Per Ola Ingvarsson @ 2004-01-18 20:55 UTC (permalink / raw)
  To: Tommy McCabe; +Cc: linux-8086

On Thu, 15 Jan 2004, Tommy McCabe wrote:

> > the configuration. Here's the error message:

> > usage: ld86 [-03NMdimrstz[-]] [-llib_extension] [-o

Which version of dev86 did you compile elks with? It seems like the 
0.16.14-version does not like the -t option if it isn't before all the 
options without hyphens.



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Patch for compiling with 0.16.14
  2004-01-18 20:55 ` Per Ola Ingvarsson
@ 2004-01-18 21:45   ` Per Ola Ingvarsson
  2004-01-18 21:49     ` Paul Nasrat
  0 siblings, 1 reply; 4+ messages in thread
From: Per Ola Ingvarsson @ 2004-01-18 21:45 UTC (permalink / raw)
  To: linux-8086


I think this patch makes it possible to compile elks using dev86 0.16.14.

Is there anyone who can confirm that it works and commit it?

RCS file: /cvsroot/elks/elks/arch/i86/Makefile,v
retrieving revision 1.29
diff -r1.29 Makefile
95c95
<               -t -M -o $(ARCH_DIR)/boot/system > System.tmp ; \
---
>               -M -o $(ARCH_DIR)/boot/system > System.tmp ; \
110c110
<               -t -M -o $(ARCH_DIR)/boot/system > System.tmp ; \
---
>               -M -o $(ARCH_DIR)/boot/system > System.tmp ; \



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Patch for compiling with 0.16.14
  2004-01-18 21:45   ` Patch for compiling with 0.16.14 Per Ola Ingvarsson
@ 2004-01-18 21:49     ` Paul Nasrat
  0 siblings, 0 replies; 4+ messages in thread
From: Paul Nasrat @ 2004-01-18 21:49 UTC (permalink / raw)
  To: Per Ola Ingvarsson; +Cc: linux-8086

On Sun, Jan 18, 2004 at 10:45:12PM +0100, Per Ola Ingvarsson wrote:
> 
> I think this patch makes it possible to compile elks using dev86 0.16.14.
> 
> Is there anyone who can confirm that it works and commit it?

Happy to test and ci, though would prefer unified diffs (diff -u).

Probably unable to look at untill tomorrow though.

Paul

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-01-18 21:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-01-15 22:19 Compiling 0.13pre1 Tommy McCabe
2004-01-18 20:55 ` Per Ola Ingvarsson
2004-01-18 21:45   ` Patch for compiling with 0.16.14 Per Ola Ingvarsson
2004-01-18 21:49     ` Paul Nasrat

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox