2024-09-17 18:59:38 +02:00
|
|
|
ISOTerminal.addEventListener('ready', function(e){
|
|
|
|
setTimeout( () => this.boot(), 50 ) // because of autorestore.js
|
2024-09-03 18:33:35 +02:00
|
|
|
})
|
|
|
|
|
2024-09-17 18:59:38 +02:00
|
|
|
ISOTerminal.prototype.boot = async function(e){
|
2024-09-03 18:33:35 +02:00
|
|
|
// set environment
|
|
|
|
let env = ['export BROWSER=1']
|
|
|
|
for ( let i in document.location ){
|
|
|
|
if( typeof document.location[i] == 'string' )
|
2024-09-23 18:01:40 +02:00
|
|
|
env.push( 'export '+String(i).toUpperCase()+'="'+decodeURIComponent( document.location[i]+'"') )
|
2024-09-03 18:33:35 +02:00
|
|
|
}
|
2024-09-23 16:58:48 +02:00
|
|
|
await this.emulator.create_file("profile.browser", this.convert.toUint8Array( env.join('\n') ) )
|
2024-09-17 18:59:38 +02:00
|
|
|
|
2024-09-16 13:28:28 +02:00
|
|
|
if( this.serial_input == 0 ){
|
2024-09-17 18:59:38 +02:00
|
|
|
if( !this.noboot ){
|
|
|
|
let boot = "source /etc/profile\n"
|
|
|
|
this.send(boot+"\n")
|
|
|
|
}
|
2024-09-16 13:28:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if( this.emulator.serial_adapter ) this.emulator.serial_adapter.term.focus()
|
|
|
|
else{
|
|
|
|
let els = [...document.querySelectorAll("div#screen")]
|
|
|
|
els.map( (el) => el.focus() )
|
2024-09-03 18:33:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|