Comments
Patch
@@ -14,7 +14,8 @@ obj-y =
obj-y += virtio.o virtio-pci.o
obj-y += fw_cfg.o
obj-y += watchdog.o
-obj-y += nand.o ecc.o
+obj-y += nand.o
+obj-$(CONFIG_ECC) += ecc.o
obj-$(CONFIG_M48T59) += m48t59.o
obj-$(CONFIG_ESCC) += escc.o
@@ -1823,6 +1823,7 @@ ptimer=no
m48t59=no
escc=no
esp=no
+ecc_flash=no
for target in $target_list; do
target_dir="$target"
@@ -2054,11 +2055,13 @@ if test "$target_softmmu" = "yes" ; then
spitz=yes
sd_flash=yes
ptimer=yes
+ ecc_flash=yes
;;
sparc)
ptimer=yes
m48t59=yes
escc=yes
+ ecc_flash=yes
;;
sparc64)
ptimer=yes
@@ -2298,6 +2301,10 @@ if test "$esp" = "yes" ; then
echo "CONFIG_ESP=y" >> $config_host_mak
fi
+if test "$ecc_flash" = "yes" ; then
+ echo "CONFIG_ECC=y" >> $config_host_mak
+fi
+
echo "/* Automatically generated by configure - do not modify */" > $config_host_h
/bin/sh $source_path/create_config < $config_host_mak >> $config_host_h
Signed-off-by: Juan Quintela <quintela@redhat.com> --- Makefile.hw | 3 ++- configure | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletions(-)