As of August 2020 the site you are on (wiki.newae.com) is deprecated, and content is now at rtfm.newae.com.

Changes

Jump to: navigation, search

CW308T-D2000

8 bytes removed, 17:11, 6 November 2018
Building Firmware
=== Troubleshooting ===
* No such file or directory when building on Windows
** This is usually caused by the default make directory command (<code>md</code>) not working. First, ensure that you have <code>mkdir</code> and cp on your system by opening <code>cmd</code> and running them. Then open <code>hardware/victims/firmware/intel_quark/qmsi/base.mk</code> and change:** <syntaxhighlight lang="makefile">
# Any other version of Windows
mkdir = @md $(subst /,\,$(1)) > nul 2>&1 || exit 0
copy = @copy $(subst /,\,$(1)) $(subst /,\,$(2)) > nul 2>&1 || exit 0
</syntaxhighlight>to:** <syntaxhighlight lang="makefile">
# Any other version of Windows
mkdir = @mkdir -p $(1) || exit 0
Approved_users, administrator
366
edits

Navigation menu