Guest User

Untitled

a guest
Feb 18th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. printf("\n * Looking for xenon.elf or vmlinux on USB/CD/DVD or user-defined file via TFTP");
  2. do {
  3. //subsystem servicing
  4. usb_do_poll();
  5. network_poll();
  6.  
  7. //cheap way to keep loop but not do the service checks multiple times
  8.  
  9. //service checks
  10. check_usb();
  11. check_tftp();
  12. check_odd();
  13.  
  14.  
  15. //This is for tux :)
  16. #ifdef NO_LOOP
  17. printf("\n * No executables were found via USB, TFTP or CD/DVD. Please reboot and supply xenon.elf or vmlinux!");
  18. return;
  19. #endif
  20.  
  21. }while (1);
Add Comment
Please, Sign In to add comment