Re: [Qemu-devel] [PATCH 0/3] Remove some unused CONFIG_* variables

2016-09-06 Thread Paolo Bonzini
On 05/09/2016 19:25, Daniel P. Berrange wrote: > There are a few CONFIG_* variables defined in default-configs/ > that are never referenced. These were found using: > > $ for i in `grep -h -E '^CONFIG' default-configs/* | sed -e 's/=.*//' | > sort | uniq` > do > echo -n "$i: " > gi

[Qemu-devel] [PATCH 0/3] Remove some unused CONFIG_* variables

2016-09-05 Thread Daniel P. Berrange
There are a few CONFIG_* variables defined in default-configs/ that are never referenced. These were found using: $ for i in `grep -h -E '^CONFIG' default-configs/* | sed -e 's/=.*//' | sort | uniq` do echo -n "$i: " git grep $i | grep -v default-configs | wc -l done | grep ": 0"