From 2afc02051c24e13a5c93b576a63d1ae99d24459b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Wed, 20 Nov 2019 10:51:47 +0100 Subject: [PATCH] sculpt_manager: increase Rom_name size The current value of 32 is too short for accessing the iwlwifi 9000 ucode ROM. Issue #3556. --- repos/gems/src/app/sculpt_manager/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/gems/src/app/sculpt_manager/types.h b/repos/gems/src/app/sculpt_manager/types.h index a56810468..cf29f1442 100644 --- a/repos/gems/src/app/sculpt_manager/types.h +++ b/repos/gems/src/app/sculpt_manager/types.h @@ -37,7 +37,7 @@ namespace Sculpt { using namespace Genode; - typedef String<32> Rom_name; + typedef String<64> Rom_name; typedef String<128> Path; typedef String<36> Start_name; typedef String<64> Label;