
caronte is the 'linuxrc' binary used onto the stage1.img install floppy of the italian
GNU/Linux distribution "Bad Penguin"(d)

caronte.c          the main program
caronte-logo.c     display the Logo



  caronte_init();	  // Init System
  caronte_hardware();     // Scan PCI Hardware
  caronte_partitions();   // Query Partitions
  caronte_distribution(); // Find Source Distribution
  // Choose a source distribution
  while (sourcedist==NULL) {
    caronte_menu1();
  }
  // Load the source distribution
  caronte_mountsource();
  caronte_shell();

  // SECOND STAGE
  runshell("/setup/caronte2.sh");
  
  // Normal Quit
  printf("caronte finito...\n");
  PRESS_ANY_KEY
  caronte_signal(0);
  return 0;
}
