Re: [Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Zhongze Liu
2017-03-21 17:37 GMT+08:00 Jan Beulich : On 21.03.17 at 09:43, wrote: >> Added 2 new config entries in common/Kconfig: >> CMDLINE and CMDLINE_OVERRIDE >> Modified common/kernel.c:cmdline_parse(). >> >> The 2 new entries enable an embedded command line to be compiled >> in the hypervisor.

Re: [Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Zhongze Liu
2017-03-21 17:30 GMT+08:00 Dario Faggioli : > On Tue, 2017-03-21 at 17:17 +0800, Zhongze Liu wrote: > : >> > On Tue, 2017-03-21 at 16:43 +0800, Zhongze Liu wrote: >> > > >> Added 2 new config entries in common/Kconfig: >> > > CMDLINE and CMDLINE_OVERRIDE >> > > Modified common/kernel.c:cmdline_

Re: [Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Jan Beulich
>>> On 21.03.17 at 09:43, wrote: > Added 2 new config entries in common/Kconfig: > CMDLINE and CMDLINE_OVERRIDE > Modified common/kernel.c:cmdline_parse(). > > The 2 new entries enable an embedded command line to be compiled > in the hypervisor. CMDLINE depends on EXPERT = "y", and CMDLINE_OV

Re: [Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Dario Faggioli
On Tue, 2017-03-21 at 17:17 +0800, Zhongze Liu wrote: : > > On Tue, 2017-03-21 at 16:43 +0800, Zhongze Liu wrote: > > > > Added 2 new config entries in common/Kconfig: > > > CMDLINE and CMDLINE_OVERRIDE > > > Modified common/kernel.c:cmdline_parse(). > > > > > > The 2 new entries enable an em

Re: [Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Zhongze Liu
2017-03-21 16:59 GMT+08:00 Dario Faggioli : > On Tue, 2017-03-21 at 16:43 +0800, Zhongze Liu wrote: >> This allows downstreams to set their defaults without modifying the >> source code >> all over the place. Also probably useful for the embedded space. >> (See Also: https://xenproject.atlassian.ne

Re: [Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Dario Faggioli
On Tue, 2017-03-21 at 16:43 +0800, Zhongze Liu wrote: > This allows downstreams to set their defaults without modifying the > source code > all over the place. Also probably useful for the embedded space. > (See Also: https://xenproject.atlassian.net/browse/XEN-41) > > Added 2 new config entries i

[Xen-devel] [PATCH v7] xen: Allow a default compiled-in command line using Kconfig

2017-03-21 Thread Zhongze Liu
This allows downstreams to set their defaults without modifying the source code all over the place. Also probably useful for the embedded space. (See Also: https://xenproject.atlassian.net/browse/XEN-41) Added 2 new config entries in common/Kconfig: CMDLINE and CMDLINE_OVERRIDE Modified common