Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1397819 > unrolled thread
| Started by | Nicolas Ferre <nicolas.ferre@atmel.com> |
|---|---|
| First post | 2016-05-10 10:10 +0200 |
| Last post | 2016-05-10 14:50 +0200 |
| Articles | 4 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH] ARM: at91/defconfig: sama5: add CONFIG_FHANDLE Nicolas Ferre <nicolas.ferre@atmel.com> - 2016-05-10 10:10 +0200
Re: [PATCH] ARM: at91/defconfig: sama5: add CONFIG_FHANDLE Marek Vasut <marex@denx.de> - 2016-05-10 14:40 +0200
Re: [PATCH] ARM: at91/defconfig: sama5: add CONFIG_FHANDLE Nicolas Ferre <nicolas.ferre@atmel.com> - 2016-05-10 14:50 +0200
Re: [PATCH] ARM: at91/defconfig: sama5: add CONFIG_FHANDLE Marek Vasut <marex@denx.de> - 2016-05-10 14:50 +0200
| From | Nicolas Ferre <nicolas.ferre@atmel.com> |
|---|---|
| Date | 2016-05-10 10:10 +0200 |
| Subject | [PATCH] ARM: at91/defconfig: sama5: add CONFIG_FHANDLE |
| Message-ID | <rxaTT-6Vy-5@gated-at.bofh.it> |
CONFIG_FHANDLE is listed as a mandatory kernel option for systemd. So explicitly enable it to allow easy use of systemd userspace. Reported-by: Marek Vasut <marex@denx.de> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> --- Hi Marek, It seems that on my side, CONFIG_FHANDLE is not selected automatically... So I add this patch: can you tell me your thoughts? Bye, Nico. arch/arm/configs/sama5_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/sama5_defconfig b/arch/arm/configs/sama5_defconfig index 307f92b31e57..9cb1a85bb166 100644 --- a/arch/arm/configs/sama5_defconfig +++ b/arch/arm/configs/sama5_defconfig @@ -1,6 +1,7 @@ # CONFIG_LOCALVERSION_AUTO is not set # CONFIG_SWAP is not set CONFIG_SYSVIPC=y +CONFIG_FHANDLE=y CONFIG_IRQ_DOMAIN_DEBUG=y CONFIG_LOG_BUF_SHIFT=14 CONFIG_CGROUPS=y -- 2.1.3
[toc] | [next] | [standalone]
| From | Marek Vasut <marex@denx.de> |
|---|---|
| Date | 2016-05-10 14:40 +0200 |
| Message-ID | <rxf7b-2mv-3@gated-at.bofh.it> |
| In reply to | #1397819 |
On 05/10/2016 10:03 AM, Nicolas Ferre wrote: > CONFIG_FHANDLE is listed as a mandatory kernel option for systemd. So > explicitly enable it to allow easy use of systemd userspace. > > Reported-by: Marek Vasut <marex@denx.de> > Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> > --- > Hi Marek, Hi! > It seems that on my side, CONFIG_FHANDLE is not selected automatically... > So I add this patch: can you tell me your thoughts? Uh, weird, I tried this on next just now: linux-2.6$ git describe HEAD next-20160510 linux-2.6$ export ARCH=arm ; export CROSS_COMPILE=arm-linux-gnueabi- linux-2.6$ make sama5_defconfig ; grep FHANDLE .config HOSTCC scripts/basic/fixdep HOSTCC scripts/kconfig/conf.o SHIPPED scripts/kconfig/zconf.tab.c SHIPPED scripts/kconfig/zconf.lex.c SHIPPED scripts/kconfig/zconf.hash.c HOSTCC scripts/kconfig/zconf.tab.o HOSTLD scripts/kconfig/conf # # configuration written to .config # CONFIG_FHANDLE=y > Bye, > Nico. > > arch/arm/configs/sama5_defconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/arm/configs/sama5_defconfig b/arch/arm/configs/sama5_defconfig > index 307f92b31e57..9cb1a85bb166 100644 > --- a/arch/arm/configs/sama5_defconfig > +++ b/arch/arm/configs/sama5_defconfig > @@ -1,6 +1,7 @@ > # CONFIG_LOCALVERSION_AUTO is not set > # CONFIG_SWAP is not set > CONFIG_SYSVIPC=y > +CONFIG_FHANDLE=y > CONFIG_IRQ_DOMAIN_DEBUG=y > CONFIG_LOG_BUF_SHIFT=14 > CONFIG_CGROUPS=y > -- Best regards, Marek Vasut
[toc] | [prev] | [next] | [standalone]
| From | Nicolas Ferre <nicolas.ferre@atmel.com> |
|---|---|
| Date | 2016-05-10 14:50 +0200 |
| Message-ID | <rxfgS-2rD-7@gated-at.bofh.it> |
| In reply to | #1398049 |
Le 10/05/2016 14:31, Marek Vasut a écrit :
> On 05/10/2016 10:03 AM, Nicolas Ferre wrote:
>> CONFIG_FHANDLE is listed as a mandatory kernel option for systemd. So
>> explicitly enable it to allow easy use of systemd userspace.
>>
>> Reported-by: Marek Vasut <marex@denx.de>
>> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>> ---
>> Hi Marek,
>
> Hi!
>
>> It seems that on my side, CONFIG_FHANDLE is not selected automatically...
>> So I add this patch: can you tell me your thoughts?
>
> Uh, weird, I tried this on next just now:
>
> linux-2.6$ git describe HEAD
> next-20160510
>
> linux-2.6$ export ARCH=arm ; export CROSS_COMPILE=arm-linux-gnueabi-
>
> linux-2.6$ make sama5_defconfig ; grep FHANDLE .config
> HOSTCC scripts/basic/fixdep
> HOSTCC scripts/kconfig/conf.o
> SHIPPED scripts/kconfig/zconf.tab.c
> SHIPPED scripts/kconfig/zconf.lex.c
> SHIPPED scripts/kconfig/zconf.hash.c
> HOSTCC scripts/kconfig/zconf.tab.o
> HOSTLD scripts/kconfig/conf
> #
> # configuration written to .config
> #
> CONFIG_FHANDLE=y
Absolutely. The patch f76be61755c5 ("Make CONFIG_FHANDLE default y") has
been added in v4.6-rc2... while I was doing my tests on at91-next that
is based on v4.6-rc1 :-\
Anyway. It's in now. Thanks,
Bye,
Nicolas
>> arch/arm/configs/sama5_defconfig | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/arm/configs/sama5_defconfig b/arch/arm/configs/sama5_defconfig
>> index 307f92b31e57..9cb1a85bb166 100644
>> --- a/arch/arm/configs/sama5_defconfig
>> +++ b/arch/arm/configs/sama5_defconfig
>> @@ -1,6 +1,7 @@
>> # CONFIG_LOCALVERSION_AUTO is not set
>> # CONFIG_SWAP is not set
>> CONFIG_SYSVIPC=y
>> +CONFIG_FHANDLE=y
>> CONFIG_IRQ_DOMAIN_DEBUG=y
>> CONFIG_LOG_BUF_SHIFT=14
>> CONFIG_CGROUPS=y
>>
>
>
--
Nicolas Ferre
[toc] | [prev] | [next] | [standalone]
| From | Marek Vasut <marex@denx.de> |
|---|---|
| Date | 2016-05-10 14:50 +0200 |
| Message-ID | <rxfgT-2rD-21@gated-at.bofh.it> |
| In reply to | #1398058 |
On 05/10/2016 02:42 PM, Nicolas Ferre wrote:
> Le 10/05/2016 14:31, Marek Vasut a écrit :
>> On 05/10/2016 10:03 AM, Nicolas Ferre wrote:
>>> CONFIG_FHANDLE is listed as a mandatory kernel option for systemd. So
>>> explicitly enable it to allow easy use of systemd userspace.
>>>
>>> Reported-by: Marek Vasut <marex@denx.de>
>>> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
>>> ---
>>> Hi Marek,
>>
>> Hi!
>>
>>> It seems that on my side, CONFIG_FHANDLE is not selected automatically...
>>> So I add this patch: can you tell me your thoughts?
>>
>> Uh, weird, I tried this on next just now:
>>
>> linux-2.6$ git describe HEAD
>> next-20160510
>>
>> linux-2.6$ export ARCH=arm ; export CROSS_COMPILE=arm-linux-gnueabi-
>>
>> linux-2.6$ make sama5_defconfig ; grep FHANDLE .config
>> HOSTCC scripts/basic/fixdep
>> HOSTCC scripts/kconfig/conf.o
>> SHIPPED scripts/kconfig/zconf.tab.c
>> SHIPPED scripts/kconfig/zconf.lex.c
>> SHIPPED scripts/kconfig/zconf.hash.c
>> HOSTCC scripts/kconfig/zconf.tab.o
>> HOSTLD scripts/kconfig/conf
>> #
>> # configuration written to .config
>> #
>> CONFIG_FHANDLE=y
>
> Absolutely. The patch f76be61755c5 ("Make CONFIG_FHANDLE default y") has
> been added in v4.6-rc2... while I was doing my tests on at91-next that
> is based on v4.6-rc1 :-\
>
> Anyway. It's in now. Thanks,
Cool, thanks :)
--
Best regards,
Marek Vasut
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web