[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 1/4] build: Hook the schedulers into Kconfig
On 17/12/2015 20:59, Jonathan Creekmore wrote: > Allow the schedulers to be independently enabled or disabled at > compile-time instead of just allowing the scheduler to be selected on > the command line. To match existing behavior, all four schedulers are > compiled in by default, although the RTDS and ARINC653 are marked > EXPERIMENTAL to match their not currently supported status. > > CC: George Dunlap <george.dunlap@xxxxxxxxxxxxx> > CC: Dario Faggioli <dario.faggioli@xxxxxxxxxx> > Signed-off-by: Jonathan Creekmore <jonathan.creekmore@xxxxxxxxx> With the suggestions Dario made, and one minor nit below, Reviewed-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> > diff --git a/xen/common/Makefile b/xen/common/Makefile > index 8ab15ba..3a2026a 100644 > --- a/xen/common/Makefile > +++ b/xen/common/Makefile > @@ -30,10 +30,10 @@ obj-y += rangeset.o > obj-y += radix-tree.o > obj-y += rbtree.o > obj-y += rcupdate.o > -obj-y += sched_credit.o > -obj-y += sched_credit2.o > -obj-y += sched_arinc653.o > -obj-y += sched_rt.o > +obj-$(CONFIG_SCHED_CREDIT) += sched_credit.o > +obj-$(CONFIG_SCHED_CREDIT2) += sched_credit2.o > +obj-$(CONFIG_SCHED_ARINC653) += sched_arinc653.o > +obj-$(CONFIG_SCHED_RTDS) += sched_rt.o I know it was wrong before, but please reorder _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |