### 080701 ###### *** sigma design ****** Eric sent 2 files to me, 'em8xxx.o' and 'llad.o' put the 2 files to '/armutils_xxx/build_arm/root/' find 'mrua_xxx/MRUA_src/sample/clear_bootosd' put 'clear_bootosd' to '/armutils_xxx/build_arm/root/' flash romfs to board excute command --- insmod llad.o ------~~~ Using llad.o Warning: loading llad will taint the kernel: non-GPL license - LGPL
### 080630 ###### *** gcc ****** when we use gcc to compile, it takes 4 steps 'preprocessing', 'compilation', 'assembly' and 'linking' the first 2 steps are normally not use but we might need to use the output file '.o' of 'assembly' in makefile if a project is not very complicate, we can use gcc to compile directly --- gcc -o test testmain.c test1.c test2.c ------ we