Changeset 366
- Timestamp:
- Jul 23, 2014, 4:16:05 PM (10 years ago)
- Location:
- soft/giet_vm
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r364 r366 69 69 build/kernel/ctx_handler.o \ 70 70 build/kernel/switch.o \ 71 build/boot/boot.o 71 build/boot/boot.o \ 72 build/boot/boot_entry.o 72 73 73 74 ### Objects to be linked for display.elf … … 169 170 dd if=build/boot/boot.elf of=$(DISK_IMAGE) seek=2 conv=notrunc 170 171 ### Checking root directory 171 mdir - i $(DISK_IMAGE) ::/172 mdir -/ -b -i $(DISK_IMAGE) ::/ 172 173 173 174 ### Disk image generation (no files in this step) … … 338 339 giet_drivers/ioc_driver.h \ 339 340 hard_config.h \ 340 giet_config.h 341 giet_config.h 342 $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< 343 344 build/boot/boot_entry.o: giet_boot/boot_entry.S \ 345 hard_config.h 341 346 $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< 342 347 … … 500 505 rm -rf build/transpose/* 501 506 rm -rf build/convol/* 502 rm -rf hdd/virt_hdd.dmg507 rm -rf $(DISK_IMAGE) -
soft/giet_vm/giet_boot/boot.c
r359 r366 132 132 //////////////////////////////////////////////////////////////////////////// 133 133 134 extern void boot_entry(); 135 134 136 // This global variable is allocated in "fat32.c" file 135 137 extern fat32_fs_t fat; … … 2510 2512 if ( (nprocs > 0) && ((clusterid != 0) || (p != 0)) ) 2511 2513 { 2512 _xcu_send_wti( cluster_xy, p, (unsigned int)boot_ init);2514 _xcu_send_wti( cluster_xy, p, (unsigned int)boot_entry ); 2513 2515 } 2514 2516 } -
soft/giet_vm/giet_boot/boot.ld
r321 r366 12 12 /****************************************************************************/ 13 13 14 ENTRY(boot_ init)14 ENTRY(boot_entry) 15 15 16 16 /****************************************************************************/ -
soft/giet_vm/giet_boot/boot_entry.S
r365 r366 45 45 /* (proc_id is a "continuous" index, while proc_xyl is a "fixed format" index */ 46 46 47 mfc0 k0, CP0_ EBASE47 mfc0 k0, CP0_PROCID 48 48 andi k0, k0, 0x3FF /* k0 <= proc_xyl */ 49 49 la t7, NB_PROCS_MAX /* t7 <= NBPROCS */
Note: See TracChangeset
for help on using the changeset viewer.