试验一下

 先试一下,简单的程序,效果

#incude<stdio.h>

int main(void){

printf("this is a simple programme for test!\n");

return 0;

}

 

  
  
  
  
  1. LDFLAGS_bootp   :=-p --no-undefined -X \ 
  2.    9                 --defsym initrd_phys=$(INITRD_PHYS) \ 
  3.   10                 --defsym params_phys=$(PARAMS_PHYS) -T 
  4.   11AFLAGS_initrd.o :=-DINITRD=\"$(INITRD)\" 
  
  
  
  
  1. 15# Note that bootp.lds picks up kernel.o and initrd.o 
  2. 16$(obj)/bootp:   $(src)/bootp.lds $(addprefix $(obj)/,init.o kernel.o initrd.o) FORCE 
  3. 17        $(call if_changed,ld) 
  4. 18        @: 
  5. 19 
  6. 20# kernel.o and initrd.o includes a binary image using 
  
  
  
  
  1. #incude<stdio.h> 
  2.  
  3. int main(void){ 
  4.  
  5. printf("this is a simple programme for test!\n"); 
  6.  
  7. return 0; 
  8.  

 

你可能感兴趣的:(main,test,OS)