X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/8a677ebb8955dbe1b09e755dbb8343a3b8fdddb1..a7a9d75b88768cbc4c61cbdaa0bc9fad7392af00:/aseg/firstrun.c diff --git a/aseg/firstrun.c b/aseg/firstrun.c index ec09a82..e0e2904 100644 --- a/aseg/firstrun.c +++ b/aseg/firstrun.c @@ -9,6 +9,7 @@ extern int _bss, _bssend; extern void timer_handler(smi_event_t ev); extern void kbc_handler(smi_event_t ev); +extern void gbl_rls_handler(smi_event_t ev); void __firstrun_start() { unsigned char *bp; @@ -36,6 +37,9 @@ void __firstrun_start() { smi_register_handler(SMI_EVENT_DEVTRAP_KBC, kbc_handler); smi_enable_event(SMI_EVENT_DEVTRAP_KBC); + + smi_register_handler(SMI_EVENT_GBL_RLS, gbl_rls_handler); + smi_enable_event(SMI_EVENT_GBL_RLS); smi_enable();