* avrdude.conf.in: used parent parts for some other parts, added

abstract .xmega part as parent for xmegas
* main.c: hide parts starting with '.' from parts list


git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@1046 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
rliebscher 2012-01-27 21:14:34 +00:00
parent 38e72e4b99
commit cfe513363f
3 changed files with 87 additions and 3454 deletions

View File

@ -1,3 +1,9 @@
2012-01-27 Rene Liebscher <R.Liebscher@gmx.de>
* avrdude.conf.in: used parent parts for some other parts, added
abstract .xmega part as parent for xmegas
* main.c: hide parts starting with '.' from parts list
2012-01-22 Rene Liebscher <R.Liebscher@gmx.de>
patch #7688: Implement parent programmers feature

File diff suppressed because it is too large Load Diff

6
main.c
View File

@ -227,7 +227,11 @@ static void list_avrparts_callback(const char *name, const char *desc,
{
struct list_walk_cookie *c = (struct list_walk_cookie *)cookie;
if (verbose){
/* hide ids starting with '.' */
if ((verbose < 2) && (name[0] == '.'))
return;
if (verbose) {
fprintf(c->f, "%s%-8s = %-18s [%s:%d]\n",
c->prefix, name, desc, cfgname, cfglineno);
} else {