Message ID | 1473096079-1310-1-git-send-email-berrange@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 09/05/2016 12:21 PM, Daniel P. Berrange wrote: > The original commit: > > commit 67aa56fc03bea44ccf384ea400515a8a58844a50 > Author: Corey Minyard <cminyard@mvista.com> > Date: Thu Dec 17 12:50:06 2015 -0600 > > ipmi: Add an external connection simulation interface > > defined a new variable CONFIG_IPMI_EXTERN, but then went > on to mistakely use the pre-existing CONFIG_IPMI_LOCAL > variable. Thanks, this is queued and I'll submit -corey > > Signed-off-by: Daniel P. Berrange <berrange@redhat.com> > --- > hw/ipmi/Makefile.objs | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/ipmi/Makefile.objs b/hw/ipmi/Makefile.objs > index a90318d..1b422bb 100644 > --- a/hw/ipmi/Makefile.objs > +++ b/hw/ipmi/Makefile.objs > @@ -1,5 +1,5 @@ > common-obj-$(CONFIG_IPMI) += ipmi.o > common-obj-$(CONFIG_IPMI_LOCAL) += ipmi_bmc_sim.o > -common-obj-$(CONFIG_IPMI_LOCAL) += ipmi_bmc_extern.o > +common-obj-$(CONFIG_IPMI_EXTERN) += ipmi_bmc_extern.o > common-obj-$(CONFIG_ISA_IPMI_KCS) += isa_ipmi_kcs.o > common-obj-$(CONFIG_ISA_IPMI_BT) += isa_ipmi_bt.o
diff --git a/hw/ipmi/Makefile.objs b/hw/ipmi/Makefile.objs index a90318d..1b422bb 100644 --- a/hw/ipmi/Makefile.objs +++ b/hw/ipmi/Makefile.objs @@ -1,5 +1,5 @@ common-obj-$(CONFIG_IPMI) += ipmi.o common-obj-$(CONFIG_IPMI_LOCAL) += ipmi_bmc_sim.o -common-obj-$(CONFIG_IPMI_LOCAL) += ipmi_bmc_extern.o +common-obj-$(CONFIG_IPMI_EXTERN) += ipmi_bmc_extern.o common-obj-$(CONFIG_ISA_IPMI_KCS) += isa_ipmi_kcs.o common-obj-$(CONFIG_ISA_IPMI_BT) += isa_ipmi_bt.o
The original commit: commit 67aa56fc03bea44ccf384ea400515a8a58844a50 Author: Corey Minyard <cminyard@mvista.com> Date: Thu Dec 17 12:50:06 2015 -0600 ipmi: Add an external connection simulation interface defined a new variable CONFIG_IPMI_EXTERN, but then went on to mistakely use the pre-existing CONFIG_IPMI_LOCAL variable. Signed-off-by: Daniel P. Berrange <berrange@redhat.com> --- hw/ipmi/Makefile.objs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)