* [PATCH 0/2] Update bcm_defconfig
@ 2013-12-05 23:00 Tim Kryger
2013-12-05 23:00 ` [PATCH 1/2] ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off Tim Kryger
2013-12-05 23:00 ` [PATCH 2/2] ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG Tim Kryger
0 siblings, 2 replies; 5+ messages in thread
From: Tim Kryger @ 2013-12-05 23:00 UTC (permalink / raw)
To: linux-arm-kernel
This series includes two minor updates to the bcm_defconfig that
removes an option that wasn't being used and eliminates a line that
is now unnecessary due to a change in the defaults for that option.
Tim Kryger (2):
ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off
ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG
arch/arm/configs/bcm_defconfig | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.8.0.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off
2013-12-05 23:00 [PATCH 0/2] Update bcm_defconfig Tim Kryger
@ 2013-12-05 23:00 ` Tim Kryger
2013-12-09 16:17 ` Christian Daudt
2013-12-05 23:00 ` [PATCH 2/2] ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG Tim Kryger
1 sibling, 1 reply; 5+ messages in thread
From: Tim Kryger @ 2013-12-05 23:00 UTC (permalink / raw)
To: linux-arm-kernel
Now that CONFIG_OABI_COMPAT is off by default, remove the explicit
disabling of this feature.
Signed-off-by: Tim Kryger <tim.kryger@linaro.org>
Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
---
arch/arm/configs/bcm_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/arm/configs/bcm_defconfig b/arch/arm/configs/bcm_defconfig
index 287ac1d..574e046 100644
--- a/arch/arm/configs/bcm_defconfig
+++ b/arch/arm/configs/bcm_defconfig
@@ -29,7 +29,6 @@ CONFIG_ARCH_BCM_MOBILE=y
CONFIG_ARM_THUMBEE=y
CONFIG_PREEMPT=y
CONFIG_AEABI=y
-# CONFIG_OABI_COMPAT is not set
# CONFIG_COMPACTION is not set
CONFIG_ZBOOT_ROM_TEXT=0x0
CONFIG_ZBOOT_ROM_BSS=0x0
--
1.8.0.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG
2013-12-05 23:00 [PATCH 0/2] Update bcm_defconfig Tim Kryger
2013-12-05 23:00 ` [PATCH 1/2] ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off Tim Kryger
@ 2013-12-05 23:00 ` Tim Kryger
2013-12-10 7:43 ` Christian Daudt
1 sibling, 1 reply; 5+ messages in thread
From: Tim Kryger @ 2013-12-05 23:00 UTC (permalink / raw)
To: linux-arm-kernel
Do not build the Pseudo Random Number Generation for Cryptographic
modules since it is not currently being used for this platform.
Signed-off-by: Tim Kryger <tim.kryger@linaro.org>
Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
---
arch/arm/configs/bcm_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/arm/configs/bcm_defconfig b/arch/arm/configs/bcm_defconfig
index 574e046..ef03bba 100644
--- a/arch/arm/configs/bcm_defconfig
+++ b/arch/arm/configs/bcm_defconfig
@@ -119,6 +119,7 @@ CONFIG_DETECT_HUNG_TASK=y
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=110
CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y
# CONFIG_FTRACE is not set
+# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRC_CCITT=y
CONFIG_CRC_T10DIF=y
CONFIG_CRC_ITU_T=y
--
1.8.0.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off
2013-12-05 23:00 ` [PATCH 1/2] ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off Tim Kryger
@ 2013-12-09 16:17 ` Christian Daudt
0 siblings, 0 replies; 5+ messages in thread
From: Christian Daudt @ 2013-12-09 16:17 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 5, 2013 at 3:00 PM, Tim Kryger <tim.kryger@linaro.org> wrote:
> Now that CONFIG_OABI_COMPAT is off by default, remove the explicit
> disabling of this feature.
>
> Signed-off-by: Tim Kryger <tim.kryger@linaro.org>
> Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
> ---
> arch/arm/configs/bcm_defconfig | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/arm/configs/bcm_defconfig b/arch/arm/configs/bcm_defconfig
> index 287ac1d..574e046 100644
> --- a/arch/arm/configs/bcm_defconfig
> +++ b/arch/arm/configs/bcm_defconfig
> @@ -29,7 +29,6 @@ CONFIG_ARCH_BCM_MOBILE=y
> CONFIG_ARM_THUMBEE=y
> CONFIG_PREEMPT=y
> CONFIG_AEABI=y
> -# CONFIG_OABI_COMPAT is not set
> # CONFIG_COMPACTION is not set
> CONFIG_ZBOOT_ROM_TEXT=0x0
> CONFIG_ZBOOT_ROM_BSS=0x0
> --
> 1.8.0.1
>
Applied to armsoc/for-3.14/soc
thanks,
csd
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG
2013-12-05 23:00 ` [PATCH 2/2] ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG Tim Kryger
@ 2013-12-10 7:43 ` Christian Daudt
0 siblings, 0 replies; 5+ messages in thread
From: Christian Daudt @ 2013-12-10 7:43 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 5, 2013 at 3:00 PM, Tim Kryger <tim.kryger@linaro.org> wrote:
> Do not build the Pseudo Random Number Generation for Cryptographic
> modules since it is not currently being used for this platform.
>
> Signed-off-by: Tim Kryger <tim.kryger@linaro.org>
> Reviewed-by: Markus Mayer <markus.mayer@linaro.org>
> ---
> arch/arm/configs/bcm_defconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/arm/configs/bcm_defconfig b/arch/arm/configs/bcm_defconfig
> index 574e046..ef03bba 100644
> --- a/arch/arm/configs/bcm_defconfig
> +++ b/arch/arm/configs/bcm_defconfig
> @@ -119,6 +119,7 @@ CONFIG_DETECT_HUNG_TASK=y
> CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=110
> CONFIG_BOOTPARAM_HUNG_TASK_PANIC=y
> # CONFIG_FTRACE is not set
> +# CONFIG_CRYPTO_ANSI_CPRNG is not set
> CONFIG_CRC_CCITT=y
> CONFIG_CRC_T10DIF=y
> CONFIG_CRC_ITU_T=y
> --
> 1.8.0.1
>
Applied to armsoc/for-3.14/soc
thanks
csd
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-12-10 7:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-05 23:00 [PATCH 0/2] Update bcm_defconfig Tim Kryger
2013-12-05 23:00 ` [PATCH 1/2] ARM: bcm_defconfig: CONFIG_OABI_COMPAT default off Tim Kryger
2013-12-09 16:17 ` Christian Daudt
2013-12-05 23:00 ` [PATCH 2/2] ARM: bcm_defconfig: Unset CONFIG_CRYPTO_ANSI_CPRNG Tim Kryger
2013-12-10 7:43 ` Christian Daudt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).