auto-run 486 B

1234567891011121314151617
  1. #!/bin/bash
  2. printf "Starting auto run"
  3. bash ./cb-helper download_code || exit 1
  4. bash ./cb-helper build_utils || exit 1
  5. bash ./cb-helper split_bios || exit 1
  6. bash ./cb-helper neuter_me || exit 1
  7. bash ./cb-helper pre_build_coreboot || exit 1
  8. bash ./cb-helper build_coreboot || exit 1
  9. bash ./cb-helper build_grub || exit 1
  10. bash ./cb-helper assemble_grub || exit 1
  11. bash ./cb-helper config_seabios || exit 1
  12. bash ./cb-helper install_grub || exit 1
  13. printf "Auto run finished successfully"