X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f X-Recipient: geda-user AT delorie DOT com X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:subject:message-id:mail-followup-to:references :mime-version:content-disposition:in-reply-to:user-agent; bh=Hsqhuq8+gjZUZaEEypyaOhsOM4RIOLZINRcuOjLOcLw=; b=akQInYmS9Zc3nf0LR1hmfLu5VfTYvob7e10rU/QsVScuYHcP9HUKsAklgiV2iJQ4mq GU8IzFiBCHWjh5Zakhbbs1zyDQ2TlRwyJlcqr0EllK4MmbDd8gAPhaDDrglImloxk9jb qHPaNtkm681T5ybUgIa7qSLipLl8xBMo8HsHavU0S3l3224oKBJOuv2HySG2p4Nsz0p/ 0noWwU62N0etYRLZJ6fFtWPJSSU5KWKnbmZOZNxKVpemx0kUPQQBgy5vXuiAX1fTvS+s +NKPGxRiwNnRCkTlEEyXgRo3VQr6THc8wSL/b5iIY3ng4H9ET5RdxrskWEXKrshUWj3G D6dg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mail-followup-to :references:mime-version:content-disposition:in-reply-to:user-agent; bh=Hsqhuq8+gjZUZaEEypyaOhsOM4RIOLZINRcuOjLOcLw=; b=a6rS7UsCeKorx8QX5NLn5v7zHzIsuCzA6z3dWI7liXC8nN7QDzgvHsyBF0sVyKMkEJ DCLX24u/M7X4l4ySw9BAikqqyfLOnfJkkRAYzFqK8/txni+oj1D3WcZmA8+npK3ccEg9 TC8pxBkCNQ9s5t7gLSTxgzBw8TF5zAljVXfXr8PsDPsO43t6dYB8R5PpdYXFiMa6Vgxp R9HevKNoSUkapYU13Myi/eefLsQZ2o5elZ55kPRByVgPsE/2Bjrp333f0AvsrsHamRZ5 IoP1sqLOk2oPj6PDVolnRsyOiovP03QPq5zx0wGDSnEujJ+JIZ9wNghXk3LL33rC1x+3 GJiQ== X-Gm-Message-State: AHYfb5iZECfosdChZ4E+U3Szf7WA2Jf2xav/k2xVmJPArJ5/7Dgl4PnJ 5P5R9Fpuquok3sNh X-Received: by 10.46.19.2 with SMTP id 2mr8104859ljt.148.1502724517354; Mon, 14 Aug 2017 08:28:37 -0700 (PDT) Date: Mon, 14 Aug 2017 18:28:34 +0300 From: "Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-user AT delorie DOT com]" To: geda-user AT delorie DOT com Subject: Re: [geda-user] lepton-eda gschem trouble Message-ID: <20170814152834.74dfviol4h6rnov3@localhost.localdomain> Mail-Followup-To: geda-user AT delorie DOT com References: <87e05944-e99a-1e9d-75e4-9a40e6dd183c AT ecosensory DOT com> <2dd67942-cedd-73be-1c2a-cc3b83818370 AT ecosensory DOT com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <2dd67942-cedd-73be-1c2a-cc3b83818370@ecosensory.com> User-Agent: NeoMutt/20170113 (1.7.2) Reply-To: geda-user AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-user AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, Aug 13, 2017 at 06:04:26PM -0500, John Griessen (john AT ecosensory DOT com) [via geda-user AT delorie DOT com] wrote: > How do I get rid of these kind of errors: > > ** (process:30679): WARNING **: Failed to load config from > "/etc/xdg/gEDA/geda-system.conf": Error opening file > /etc/xdg/gEDA/geda-system.conf: No such file or directory > > ** (process:30679): WARNING **: Failed to load config from "/home/john/Documents/EEProjects/circuitboards/culture_shock/hardware_schematics_layouts/geda.conf": > Error opening file /home/john/Documents/EEProjects/circuitboards/culture_shock/hardware_schematics_layouts/geda.conf: > No such file or directory > WARNING: The RC file function 'gnetlist-version' is deprecated and does nothing. > > WARNING: The RC file function 'hierarchy-uref-mangle' is deprecated. > > RC configuration functions will be removed in an upcoming gEDA > release. Please use configuration files instead. > > WARNING: The RC file function 'hierarchy-netname-mangle' is deprecated. All they are not errors, just warnings. To eliminate the first one, you have to create /etc/xdg/gEDA/geda-system.conf (you can just `touch' the file). `geda.conf' is a project config file. You can also just `touch' it or use `lepton-cli config' command to set what you need, e.g.: lepton-cli config gnetlist.hierarchy mangle-refdes-attribute true lepton-cli config gnetlist.hierarchy mangle-netname-attribute true To see to which value the key is set, use: lepton-cli config gnetlist.hierarchy mangle-netname-attribute that is, without `true' at the end of line. Warnings about `gnetlist-version' and such are telling you have to remove obsolete gnetlistrc's (including system's one) and replace them with new config. HTH -- Vladimir