Adapt Host Watchdog to use kdump-tools

The Debian package for kdump changed from kdump to kdump-tools

Test Plan:

PASS: Verify build and install AIO DX system
PASS: Verify host watchdog detects kdump as active in debian

Closes-Bug: 2001692
Signed-off-by: Eric MacDonald <eric.macdonald@windriver.com>
Change-Id: Ie1ac29d3d29f3d9c843789cdedf85081fe790616
This commit is contained in:
Eric MacDonald 2023-01-04 12:56:21 -05:00
parent 85ea002112
commit a3cba57a1f
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ void hostwTimer_handler ( int sig, siginfo_t *si, void *uc)
void get_kdump_support ( void )
{
char pipe_cmd_output [PIPE_COMMAND_RESPON_LEN] ;
execute_pipe_cmd ( "/usr/bin/systemctl is-active kdump",
execute_pipe_cmd ( "/usr/bin/systemctl is-active kdump-tools",
&pipe_cmd_output[0],
PIPE_COMMAND_RESPON_LEN );
if ( strnlen ( pipe_cmd_output, PIPE_COMMAND_RESPON_LEN ) > 0 )