32 lines
625 B
JavaScript
32 lines
625 B
JavaScript
|
|
//@ts-check
|
|
function panic() {
|
|
console.log("/!\\ INIT PANIK /!\\ LOSE CHIBRE")
|
|
while(1) {}
|
|
}
|
|
|
|
async function main() {
|
|
try {
|
|
const initd = require('./initd.js')
|
|
const reboot = require('./reboot.js')
|
|
const { fHook } = require("./hook.js")
|
|
|
|
console.clear()
|
|
|
|
await initd()
|
|
|
|
//chainload into sheebr
|
|
await fHook("/usr/bin/sheebr.js")
|
|
reboot.disableCtrlAltSupr()
|
|
reboot.powerOff()
|
|
|
|
console.log("End of init reached")
|
|
reboot.enableCtrlAltSupr()
|
|
panic()
|
|
} catch(e) {
|
|
console.log(e)
|
|
panic()
|
|
}
|
|
}
|
|
main()
|