* 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:
parent
38e72e4b99
commit
cfe513363f
|
@ -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>
|
2012-01-22 Rene Liebscher <R.Liebscher@gmx.de>
|
||||||
|
|
||||||
patch #7688: Implement parent programmers feature
|
patch #7688: Implement parent programmers feature
|
||||||
|
|
3529
avrdude.conf.in
3529
avrdude.conf.in
File diff suppressed because it is too large
Load Diff
4
main.c
4
main.c
|
@ -227,6 +227,10 @@ static void list_avrparts_callback(const char *name, const char *desc,
|
||||||
{
|
{
|
||||||
struct list_walk_cookie *c = (struct list_walk_cookie *)cookie;
|
struct list_walk_cookie *c = (struct list_walk_cookie *)cookie;
|
||||||
|
|
||||||
|
/* hide ids starting with '.' */
|
||||||
|
if ((verbose < 2) && (name[0] == '.'))
|
||||||
|
return;
|
||||||
|
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
fprintf(c->f, "%s%-8s = %-18s [%s:%d]\n",
|
fprintf(c->f, "%s%-8s = %-18s [%s:%d]\n",
|
||||||
c->prefix, name, desc, cfgname, cfglineno);
|
c->prefix, name, desc, cfgname, cfglineno);
|
||||||
|
|
Loading…
Reference in New Issue