diff --git a/doc/manual/core_device.rst b/doc/manual/core_device.rst index 8ff53fcbf..96308af92 100644 --- a/doc/manual/core_device.rst +++ b/doc/manual/core_device.rst @@ -17,7 +17,7 @@ This storage area is used to store the core device MAC address, IP address and e The flash storage area is one sector (typically 64 kB) large and is organized as a list of key-value records. -This flash storage space can be accessed by using ``artiq_coreconfig`` (see: :ref:`core-device-configuration-tool`). +This flash storage space can be accessed by using ``artiq_coremgmt`` (see: :ref:`core-device-management-tool`). .. _board-ports: diff --git a/doc/manual/installing.rst b/doc/manual/installing.rst index 098d0b7d0..05a761493 100644 --- a/doc/manual/installing.rst +++ b/doc/manual/installing.rst @@ -182,13 +182,13 @@ To flash the idle kernel: * Write it into the core device configuration flash storage: :: - $ artiq_coreconfig write -f idle_kernel idle.elf + $ artiq_coremgmt config -f idle_kernel idle.elf -.. note:: You can find more information about how to use the ``artiq_coreconfig`` utility on the :ref:`Utilities ` page. +.. note:: You can find more information about how to use the ``artiq_coremgmt`` utility on the :ref:`Utilities ` page. * (optional) Flash the startup kernel -The startup kernel is executed once when the core device powers up. It should initialize DDSes, set up TTL directions, etc. Proceed as with the idle kernel, but using the ``startup_kernel`` key in ``artiq_coreconfig``. +The startup kernel is executed once when the core device powers up. It should initialize DDSes, set up TTL directions, etc. Proceed as with the idle kernel, but using the ``startup_kernel`` key in the ``artiq_coremgmt`` command. For DRTIO systems, the startup kernel should wait until the desired links are up, using :meth:`artiq.coredevice.Core.get_drtio_link_status`. @@ -196,8 +196,8 @@ For DRTIO systems, the startup kernel should wait until the desired links are up Some core devices may use either an external clock signal or their internal clock. The clock is selected at power-up. Use one of these commands: :: - $ artiq_coreconfig write -s rtio_clock i # internal clock (default) - $ artiq_coreconfig write -s rtio_clock e # external clock + $ artiq_coremgmt config write -s rtio_clock i # internal clock (default) + $ artiq_coremgmt config write -s rtio_clock e # external clock .. rubric:: Footnotes diff --git a/doc/manual/utilities.rst b/doc/manual/utilities.rst index 9374a6930..5bf67bb48 100644 --- a/doc/manual/utilities.rst +++ b/doc/manual/utilities.rst @@ -104,7 +104,7 @@ Flashing/Loading tool :ref: artiq.frontend.artiq_flash.get_argparser :prog: artiq_flash -.. _core-device-configuration-tool: +.. _core-device-management-tool: Core device management tool ---------------------------