From: Kenn H. <ke...@us...> - 2005-04-07 22:57:14
|
Update of /cvsroot/linux-vax/www/htdocs/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/htdocs/docs Modified Files: README Log Message: Latest Makefile check-in means we need to put ARCH=vax on the make command lines Index: README =================================================================== RCS file: /cvsroot/linux-vax/www/htdocs/docs/README,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- README 6 Apr 2005 07:25:28 -0000 1.4 +++ README 7 Apr 2005 22:57:05 -0000 1.5 @@ -97,7 +97,7 @@ cd into the kernel dir created by cvs and do - $ make oldconfig + $ make ARCH=vax oldconfig to create a default .config. (Beware about playing with the config too much, as it might break the compile, obviously there @@ -107,24 +107,17 @@ Compile a network-bootable image by doing - $ make mopboot + $ make ARCH=vax mopboot This will generate plenty of compiler and linker warnings, but you should end up with a vmlinux.SYS file sized about 800K-1.2M, depending on the options. - If you are hacking around in arch/vax, you can do a quicker re-compile - by doing - - $ make mopbootx - - which just rebuilds stuff in arch/vax and re-links the kernel. - (obsolete?) If you have your VAX and Linux machine on the same SCSI chain and you've got a scratch disk handy, you can do - $ make diskboot && dd if=vmlinux.dsk of=/dev/sdX + $ make ARCH=vax diskboot && dd if=vmlinux.dsk of=/dev/sdX and then tell your VAX to boot from this disk. This is faster than netbooting. |