From ffa54c45eb575e998bb1b365f12faeaf555b9d47 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 20 Jun 2018 22:15:42 +0100 Subject: [PATCH] Fix linux invalid keyword argument bug. --- volatility/framework/automagic/linux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/automagic/linux.py b/volatility/framework/automagic/linux.py index cf07e7446..24819059d 100644 --- a/volatility/framework/automagic/linux.py +++ b/volatility/framework/automagic/linux.py @@ -150,7 +150,7 @@ class LintelStacker(interfaces.automagic.StackerLayerInterface): context.config[join(config_path, "page_map_offset")] = dtb context.config[join(config_path, "linux_banner")] = str(banner, 'latin-1') - layer = layer_class(context, config_path = config_path, name = new_layer_name, os = 'Linux') + layer = layer_class(context, config_path = config_path, name = new_layer_name) if layer: vollog.debug("DTB was found at: 0x{:0x}".format(dtb))