> > ifeq ($(CONFIG_USB_SMARTCARD),y) > > common-obj-y += dev-smartcard-reader.o > > I'm curious why you don't use something like: > > common-obj-$(CONFIG_USB_SMARTCARD) > > Do we want to be able to configure individual elements as modules? > Or is the intent to force as module things that are marked as 'y'?
qemu kconfig miniconf handles bool only, not tristate. So, yes, for now we can do only "all modules" or "no modules" but nothing inbetween. take care, Gerd