diff options
Diffstat (limited to 'drivers/firmware/efi/libstub/arm-stub.c')
| -rw-r--r-- | drivers/firmware/efi/libstub/arm-stub.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/drivers/firmware/efi/libstub/arm-stub.c b/drivers/firmware/efi/libstub/arm-stub.c index 1cb2d1c070c3..a94601d5939e 100644 --- a/drivers/firmware/efi/libstub/arm-stub.c +++ b/drivers/firmware/efi/libstub/arm-stub.c @@ -238,7 +238,8 @@ unsigned long efi_entry(void *handle, efi_system_table_t *sys_table,  	efi_random_get_seed(sys_table); -	if (!nokaslr()) { +	/* hibernation expects the runtime regions to stay in the same place */ +	if (!IS_ENABLED(CONFIG_HIBERNATION) && !nokaslr()) {  		/*  		 * Randomize the base of the UEFI runtime services region.  		 * Preserve the 2 MB alignment of the region by taking a | 
