* [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig
@ 2014-04-03 15:30 Ezequiel Garcia
2014-04-03 15:30 ` [PATCH 2/2] ARM: mvebu: enable fhandle in the defconfigs Ezequiel Garcia
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Ezequiel Garcia @ 2014-04-03 15:30 UTC (permalink / raw)
To: linux-arm-kernel
NFSroot is very frequently used by developers to boot, so let's make
our lives simpler and enable it by default.
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
---
arch/arm/configs/mvebu_v7_defconfig | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/arch/arm/configs/mvebu_v7_defconfig b/arch/arm/configs/mvebu_v7_defconfig
index a34713d..bfcc362 100644
--- a/arch/arm/configs/mvebu_v7_defconfig
+++ b/arch/arm/configs/mvebu_v7_defconfig
@@ -29,6 +29,9 @@ CONFIG_ARM_ATAG_DTB_COMPAT=y
CONFIG_VFP=y
CONFIG_NET=y
CONFIG_INET=y
+CONFIG_IP_PNP=y
+CONFIG_IP_PNP_DHCP=y
+CONFIG_IP_PNP_BOOTP=y
CONFIG_BT=y
CONFIG_BT_MRVL=y
CONFIG_BT_MRVL_SDIO=y
@@ -103,6 +106,8 @@ CONFIG_UDF_FS=m
CONFIG_MSDOS_FS=y
CONFIG_VFAT_FS=y
CONFIG_TMPFS=y
+CONFIG_NFS_FS=y
+CONFIG_ROOT_NFS=y
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_850=y
CONFIG_NLS_ISO8859_1=y
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] ARM: mvebu: enable fhandle in the defconfigs
2014-04-03 15:30 [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
@ 2014-04-03 15:30 ` Ezequiel Garcia
2014-04-16 15:52 ` [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
2014-04-24 4:34 ` Jason Cooper
2 siblings, 0 replies; 5+ messages in thread
From: Ezequiel Garcia @ 2014-04-03 15:30 UTC (permalink / raw)
To: linux-arm-kernel
CONFIG_FHANDLE is required by systemd >= 210 to spawn a serial TTY.
Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
---
arch/arm/configs/mvebu_v5_defconfig | 1 +
arch/arm/configs/mvebu_v7_defconfig | 1 +
2 files changed, 2 insertions(+)
diff --git a/arch/arm/configs/mvebu_v5_defconfig b/arch/arm/configs/mvebu_v5_defconfig
index 36484a3..5d8ec15 100644
--- a/arch/arm/configs/mvebu_v5_defconfig
+++ b/arch/arm/configs/mvebu_v5_defconfig
@@ -1,4 +1,5 @@
CONFIG_SYSVIPC=y
+CONFIG_FHANDLE=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_LOG_BUF_SHIFT=19
diff --git a/arch/arm/configs/mvebu_v7_defconfig b/arch/arm/configs/mvebu_v7_defconfig
index bfcc362..b1e514e 100644
--- a/arch/arm/configs/mvebu_v7_defconfig
+++ b/arch/arm/configs/mvebu_v7_defconfig
@@ -1,5 +1,6 @@
CONFIG_EXPERIMENTAL=y
CONFIG_SYSVIPC=y
+CONFIG_FHANDLE=y
CONFIG_IRQ_DOMAIN_DEBUG=y
CONFIG_HIGH_RES_TIMERS=y
CONFIG_LOG_BUF_SHIFT=14
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig
2014-04-03 15:30 [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
2014-04-03 15:30 ` [PATCH 2/2] ARM: mvebu: enable fhandle in the defconfigs Ezequiel Garcia
@ 2014-04-16 15:52 ` Ezequiel Garcia
2014-04-16 17:01 ` Jason Cooper
2014-04-24 4:34 ` Jason Cooper
2 siblings, 1 reply; 5+ messages in thread
From: Ezequiel Garcia @ 2014-04-16 15:52 UTC (permalink / raw)
To: linux-arm-kernel
Hello guys,
On Apr 03, Ezequiel Garcia wrote:
> NFSroot is very frequently used by developers to boot, so let's make
> our lives simpler and enable it by default.
>
> Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> ---
> arch/arm/configs/mvebu_v7_defconfig | 5 +++++
> 1 file changed, 5 insertions(+)
>
Any comments about this two defconfig changes?
After the recent systemd debug mess, now I'm not sure we should add a defconfig,
just because systemd breaks without it.
Maybe we can merge this one and drop the second one?
--
Ezequiel Garc?a, Free Electrons
Embedded Linux, Kernel and Android Engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig
2014-04-16 15:52 ` [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
@ 2014-04-16 17:01 ` Jason Cooper
0 siblings, 0 replies; 5+ messages in thread
From: Jason Cooper @ 2014-04-16 17:01 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, Apr 16, 2014 at 12:52:12PM -0300, Ezequiel Garcia wrote:
> Hello guys,
>
> On Apr 03, Ezequiel Garcia wrote:
> > NFSroot is very frequently used by developers to boot, so let's make
> > our lives simpler and enable it by default.
> >
> > Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> > ---
> > arch/arm/configs/mvebu_v7_defconfig | 5 +++++
> > 1 file changed, 5 insertions(+)
> >
>
> Any comments about this two defconfig changes?
Nope.
> After the recent systemd debug mess, now I'm not sure we should add a defconfig,
> just because systemd breaks without it.
If we (mvebu maintainers) don't mind changing the mvebu_*_defconfigs,
who's going to complain? If it helps your workflow, then we'll add it.
My only issue would be if the change breaks the bootfarm testing.
The debug thread and this series are completely orthogonal.
thx,
Jason.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig
2014-04-03 15:30 [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
2014-04-03 15:30 ` [PATCH 2/2] ARM: mvebu: enable fhandle in the defconfigs Ezequiel Garcia
2014-04-16 15:52 ` [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
@ 2014-04-24 4:34 ` Jason Cooper
2 siblings, 0 replies; 5+ messages in thread
From: Jason Cooper @ 2014-04-24 4:34 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Apr 03, 2014 at 12:30:13PM -0300, Ezequiel Garcia wrote:
> NFSroot is very frequently used by developers to boot, so let's make
> our lives simpler and enable it by default.
>
> Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
> ---
> arch/arm/configs/mvebu_v7_defconfig | 5 +++++
> 1 file changed, 5 insertions(+)
Both applied to mvebu/defconfig
thx,
Jason.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-04-24 4:34 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-03 15:30 [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
2014-04-03 15:30 ` [PATCH 2/2] ARM: mvebu: enable fhandle in the defconfigs Ezequiel Garcia
2014-04-16 15:52 ` [PATCH 1/2] ARM: mvebu: Enable nfsroot in the defconfig Ezequiel Garcia
2014-04-16 17:01 ` Jason Cooper
2014-04-24 4:34 ` Jason Cooper
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox