The system description file allows one to specify an arbitrary network address via "core_addr" : "192.168.1.70"
(numeric value here is the default), see artiq/coredevice/coredevice_generic.schema.json (release 7). Questions:
- If I specify an arbitrary
"core_addr"
in the system description file, use that file to compileboot.bin
for the Kasli SoC and place/boot.bin
on the microSD card without a/config.txt
, will the Kasli SoC respond to pings on the specified"core_addr"
? - If I also specify
ip=10.0.0.2
in/config.txt
on the microSD card, which address will prevail? The"core_addr"
from the system description file or theip
-key from/config.txt
? - Is
ip=10.0.0.2
the correct syntax in/config.txt
? Or does it rather have to be"ip"="10.0.0.2"
?