diff options
author | Stephan Gerhold <stephan.gerhold@linaro.org> | 2025-04-17 15:49:13 +0200 |
---|---|---|
committer | Casey Connolly <casey.connolly@linaro.org> | 2025-06-02 18:19:27 +0200 |
commit | 792ccccb46e58fbeb3666efbe241bcfaa450568f (patch) | |
tree | e6f744f8dd605c07b204b6cae1b4a4b05e779950 | |
parent | 036b54c7200ec361776061ab1fe2ddd302fa78c5 (diff) |
board: dragonboard410c: Enable support for KASLR in Linux
When booting Linux, there is currently the following warning in the console
when using the default dragonboard410c_defconfig:
[ 0.000000] KASLR disabled due to lack of seed
Fix this by enabling DM_RNG and RNG_MSM in the defconfig to generate the
KASLR seed:
[ 0.000000] KASLR enabled
Signed-off-by: Stephan Gerhold <stephan.gerhold@linaro.org>
Reviewed-by:
Reviewed-by: Sumit Garg <sumit.garg@oss.qualcomm.com>
Link: https://lore.kernel.org/r/20250417-db410c-fixes2-v1-3-76ad994da152@linaro.org
Signed-off-by: Casey Connolly <casey.connolly@linaro.org>
-rw-r--r-- | configs/dragonboard410c_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/dragonboard410c_defconfig b/configs/dragonboard410c_defconfig index 6feba70b943..d267b6ed34d 100644 --- a/configs/dragonboard410c_defconfig +++ b/configs/dragonboard410c_defconfig @@ -55,6 +55,8 @@ CONFIG_PINCONF=y CONFIG_PINCTRL_QCOM_APQ8016=y CONFIG_DM_PMIC=y CONFIG_PMIC_QCOM=y +CONFIG_DM_RNG=y +CONFIG_RNG_MSM=y CONFIG_MSM_SERIAL=y CONFIG_SPMI_MSM=y CONFIG_USB=y |