Created attachment 96 [details] proposed fix In the dev-env-setup repository, the hdl-tool-yosys script insists on running "git" and "make" as root. https://git.libre-soc.org/?p=dev-env-setup.git;a=blob;f=hdl-tools-yosys;h=23cbd93304876fa421e537ac7f7d674827c625e5;hb=HEAD But root is only really needed for "apt-get" and "make install". I believe it is generally good practice to run software as root as little as possible. I suggest removing the root detection guard at the top of the script, inserting "sudo" at appropriate places, instead. As a bonus, the "chown" and "chgrp" calls at the end are not longer needed and can be removed. Relevant mailing list discussion: http://lists.libre-riscv.org/pipermail/libre-soc-dev/2020-August/000071.html