"Richard A. Smith" <[EMAIL PROTECTED]> writes: > Well I finally got the go to test linuxBIOS for use on our upcomming > project. The C vs assembly arguement is _very_ powerfull. > > I've pulled down the latest cvs and built a config file of the > following: > > target src > arch i386 > cpu p5 > northbridge intel/440bx > southbridge intel/piix4e > superio NSC pc87309 > > option SERIAL_CONSOLE
You probably want option SERIAL_CONSOLE=1 > > The config build goes well but when I do make in the src dir I get > lots of: > > crt0.s:859: Error: invalid character '_' in mnemonic > crt0.s:866: Error: invalid character '_' in mnemonic > crt0.s:872: Error: invalid character '_' in mnemonic > crt0.s:877: Error: invalid character '_' in mnemonic Look at crt0.s What it means is that there is a macro whos definition was not included. So it wasn't expanded when crt0.s was built. Look at the given line yourself. Eric
