Bash build new freebsd kernel


/ Published in: Bash
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #!/bin/sh
  2.  
  3. cd /usr/src/sys/i386/conf
  4. /usr/sbin/config MYKERNEL
  5. cd ../compile/MYKERNEL
  6. make cleandepend
  7. make depend
  8. make
  9. make install

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.