onsistem_sfs.sh 473 B

1234567891011121314151617
  1. #!/bin/bash
  2. hata_olustu(){
  3. if [ ! -z "$1" ];then
  4. echo "$1"
  5. exit 1
  6. fi
  7. }
  8. # Ön sistemin sıkıştırılmadan önce hatalarının kontrolü
  9. #grep -l 'compilation terminated' /tmp/*.log
  10. #grep -l '.h: No such file or directory' /tmp/*.log
  11. [ -z $ONSISTEM_CHROOT ] && hata_olustu "ONSISTEM_CHROOT tanmlı değil!"
  12. mksquashfs $ONSISTEM_CHROOT ../onsistem-$(date --utc +"%F_%H-%M").sfs -comp xz
  13. mksquashfs /tmp/*.log ../onsistem-$(date --utc +"%F_%H-%M").log.sfs -comp xz