load.sh 198 B

123456789
  1. #!/bin/bash
  2. sudo service aesmd stop
  3. sudo rmmod graphene_sgx
  4. sudo rmmod isgx
  5. make || exit -1
  6. sudo modprobe isgx || exit -1
  7. sudo insmod graphene-sgx.ko || exit -1
  8. sudo service aesmd start || exit -1