Re: [PATCH v2 1/4] sandbox: add handler for exceptions

2020-12-09 Thread Simon Glass
On 17.11.20 00:53, Simon Glass wrote: > Hi Heinrich, > > On Wed, 11 Nov 2020 at 16:30, Heinrich Schuchardt wrote: >> >> Add a handler for SIGILL, SIGBUS, SIGSEGV. >> >> When an exception occurs print the program counter and the loaded >> UEFI binaries and reset the system if

Re: [PATCH v2 1/4] sandbox: add handler for exceptions

2020-11-19 Thread Heinrich Schuchardt
On 17.11.20 00:53, Simon Glass wrote: > Hi Heinrich, > > On Wed, 11 Nov 2020 at 16:30, Heinrich Schuchardt wrote: >> >> Add a handler for SIGILL, SIGBUS, SIGSEGV. >> >> When an exception occurs print the program counter and the loaded >> UEFI binaries and reset the system if

Re: [PATCH v2 1/4] sandbox: add handler for exceptions

2020-11-16 Thread Simon Glass
Hi Heinrich, On Wed, 11 Nov 2020 at 16:30, Heinrich Schuchardt wrote: > > Add a handler for SIGILL, SIGBUS, SIGSEGV. > > When an exception occurs print the program counter and the loaded > UEFI binaries and reset the system if CONFIG_SANDBOX_CRASH_RESET=y > or exit to the OS otherwise. > >

[PATCH v2 1/4] sandbox: add handler for exceptions

2020-11-11 Thread Heinrich Schuchardt
Add a handler for SIGILL, SIGBUS, SIGSEGV. When an exception occurs print the program counter and the loaded UEFI binaries and reset the system if CONFIG_SANDBOX_CRASH_RESET=y or exit to the OS otherwise. Signed-off-by: Heinrich Schuchardt --- v2: add a customizing switch set