From d3ea66d493e1899f0b50263f5f33f07aeb8cd755 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20G=C5=82=C4=85bek?= Date: Tue, 3 Dec 2019 14:42:18 +0100 Subject: [PATCH] samples: boards: Merge nrf91/ with nrf52/ and rename it to nrf/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The following samples: - boards/nrf91/nrfx - boards/nrf52/power_mgr are actually not specific to nRF91 and nRF52 Series SoCs, respectively, hence the current naming of the above board/ subdirectories may be misleading. Thus, use nrf/ directory for holding all nRF board specific samples that apply to several boards. Paths to the moved samples that are mentioned in their documentation are also updated accordingly. Signed-off-by: Andrzej Głąbek --- samples/boards/{nrf52 => nrf}/mesh/onoff-app/CMakeLists.txt | 0 samples/boards/{nrf52 => nrf}/mesh/onoff-app/README.rst | 4 ++-- samples/boards/{nrf52 => nrf}/mesh/onoff-app/prj.conf | 0 samples/boards/{nrf52 => nrf}/mesh/onoff-app/sample.yaml | 0 samples/boards/{nrf52 => nrf}/mesh/onoff-app/src/main.c | 0 .../mesh/onoff_level_lighting_vnd_app/CMakeLists.txt | 0 .../mesh/onoff_level_lighting_vnd_app/README.rst | 4 ++-- .../{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/prj.conf | 0 .../mesh/onoff_level_lighting_vnd_app/prj_smp_svr.conf | 0 .../mesh/onoff_level_lighting_vnd_app/sample.yaml | 0 .../mesh/onoff_level_lighting_vnd_app/src/app_gpio.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/app_gpio.h | 0 .../mesh/onoff_level_lighting_vnd_app/src/common.h | 0 .../mesh/onoff_level_lighting_vnd_app/src/main.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.h | 0 .../src/mesh/device_composition.c | 0 .../src/mesh/device_composition.h | 0 .../src/mesh/no_transition_work_handler.c | 0 .../src/mesh/no_transition_work_handler.h | 0 .../mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.h | 0 .../onoff_level_lighting_vnd_app/src/mesh/state_binding.c | 0 .../onoff_level_lighting_vnd_app/src/mesh/state_binding.h | 0 .../mesh/onoff_level_lighting_vnd_app/src/mesh/transition.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/mesh/transition.h | 0 .../mesh/onoff_level_lighting_vnd_app/src/smp_svr.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/smp_svr.h | 0 .../mesh/onoff_level_lighting_vnd_app/src/storage.c | 0 .../mesh/onoff_level_lighting_vnd_app/src/storage.h | 0 samples/boards/{nrf91 => nrf}/nrfx/CMakeLists.txt | 0 samples/boards/{nrf91 => nrf}/nrfx/README.rst | 4 ++-- samples/boards/{nrf91 => nrf}/nrfx/prj.conf | 0 samples/boards/{nrf91 => nrf}/nrfx/sample.yaml | 0 samples/boards/{nrf91 => nrf}/nrfx/src/main.c | 0 samples/boards/{nrf52 => nrf}/power_mgr/CMakeLists.txt | 0 samples/boards/{nrf52 => nrf}/power_mgr/Kconfig | 0 samples/boards/{nrf52 => nrf}/power_mgr/README.rst | 2 +- samples/boards/{nrf52 => nrf}/power_mgr/prj.conf | 0 samples/boards/{nrf52 => nrf}/power_mgr/prj_tickless.conf | 0 samples/boards/{nrf52 => nrf}/power_mgr/sample.yaml | 0 samples/boards/{nrf52 => nrf}/power_mgr/src/main.c | 0 samples/boards/{nrf52 => nrf}/power_mgr/src/power.c | 0 samples/boards/{nrf52 => nrf}/power_mgr/src/sample.h | 0 44 files changed, 7 insertions(+), 7 deletions(-) rename samples/boards/{nrf52 => nrf}/mesh/onoff-app/CMakeLists.txt (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff-app/README.rst (96%) rename samples/boards/{nrf52 => nrf}/mesh/onoff-app/prj.conf (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff-app/sample.yaml (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff-app/src/main.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/README.rst (95%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/prj.conf (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/prj_smp_svr.conf (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/sample.yaml (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/app_gpio.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/app_gpio.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/common.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/main.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/smp_svr.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/smp_svr.h (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/storage.c (100%) rename samples/boards/{nrf52 => nrf}/mesh/onoff_level_lighting_vnd_app/src/storage.h (100%) rename samples/boards/{nrf91 => nrf}/nrfx/CMakeLists.txt (100%) rename samples/boards/{nrf91 => nrf}/nrfx/README.rst (92%) rename samples/boards/{nrf91 => nrf}/nrfx/prj.conf (100%) rename samples/boards/{nrf91 => nrf}/nrfx/sample.yaml (100%) rename samples/boards/{nrf91 => nrf}/nrfx/src/main.c (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/CMakeLists.txt (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/Kconfig (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/README.rst (98%) rename samples/boards/{nrf52 => nrf}/power_mgr/prj.conf (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/prj_tickless.conf (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/sample.yaml (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/src/main.c (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/src/power.c (100%) rename samples/boards/{nrf52 => nrf}/power_mgr/src/sample.h (100%) diff --git a/samples/boards/nrf52/mesh/onoff-app/CMakeLists.txt b/samples/boards/nrf/mesh/onoff-app/CMakeLists.txt similarity index 100% rename from samples/boards/nrf52/mesh/onoff-app/CMakeLists.txt rename to samples/boards/nrf/mesh/onoff-app/CMakeLists.txt diff --git a/samples/boards/nrf52/mesh/onoff-app/README.rst b/samples/boards/nrf/mesh/onoff-app/README.rst similarity index 96% rename from samples/boards/nrf52/mesh/onoff-app/README.rst rename to samples/boards/nrf/mesh/onoff-app/README.rst index 0089913429d..a7b270c65b6 100644 --- a/samples/boards/nrf52/mesh/onoff-app/README.rst +++ b/samples/boards/nrf/mesh/onoff-app/README.rst @@ -43,13 +43,13 @@ likely also run on the nrf52_pca10040 board. Building and Running ******************** -This sample can be found under :zephyr_file:`samples/boards/nrf52/mesh/onoff-app` in the +This sample can be found under :zephyr_file:`samples/boards/nrf/mesh/onoff-app` in the Zephyr tree. The following commands build the application. .. zephyr-app-commands:: - :zephyr-app: samples/boards/nrf52/mesh/onoff-app + :zephyr-app: samples/boards/nrf/mesh/onoff-app :board: nrf52840_pca10056 :goals: build flash :compact: diff --git a/samples/boards/nrf52/mesh/onoff-app/prj.conf b/samples/boards/nrf/mesh/onoff-app/prj.conf similarity index 100% rename from samples/boards/nrf52/mesh/onoff-app/prj.conf rename to samples/boards/nrf/mesh/onoff-app/prj.conf diff --git a/samples/boards/nrf52/mesh/onoff-app/sample.yaml b/samples/boards/nrf/mesh/onoff-app/sample.yaml similarity index 100% rename from samples/boards/nrf52/mesh/onoff-app/sample.yaml rename to samples/boards/nrf/mesh/onoff-app/sample.yaml diff --git a/samples/boards/nrf52/mesh/onoff-app/src/main.c b/samples/boards/nrf/mesh/onoff-app/src/main.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff-app/src/main.c rename to samples/boards/nrf/mesh/onoff-app/src/main.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/CMakeLists.txt diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/README.rst b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/README.rst similarity index 95% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/README.rst rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/README.rst index b9f5f27562f..935b0e1ba0b 100644 --- a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/README.rst +++ b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/README.rst @@ -60,13 +60,13 @@ likely also run on the nrf52_pca10040 board. Building and Running ******************** -This sample can be found under :zephyr_file:`samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app` in the +This sample can be found under :zephyr_file:`samples/boards/nrf/mesh/onoff_level_lighting_vnd_app` in the Zephyr tree. The following commands build the application. .. zephyr-app-commands:: - :zephyr-app: samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app + :zephyr-app: samples/boards/nrf/mesh/onoff_level_lighting_vnd_app :board: nrf52840_pca10056 :goals: build flash :compact: diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/prj.conf b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/prj.conf similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/prj.conf rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/prj.conf diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/prj_smp_svr.conf b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/prj_smp_svr.conf similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/prj_smp_svr.conf rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/prj_smp_svr.conf diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/sample.yaml b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/sample.yaml similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/sample.yaml rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/sample.yaml diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/app_gpio.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/app_gpio.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/app_gpio.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/app_gpio.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/app_gpio.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/app_gpio.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/app_gpio.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/app_gpio.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/common.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/common.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/common.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/common.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/main.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/main.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/main.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/main.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/ble_mesh.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/device_composition.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/no_transition_work_handler.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/publisher.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/state_binding.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/mesh/transition.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/smp_svr.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/smp_svr.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/smp_svr.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/smp_svr.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/smp_svr.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/smp_svr.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/smp_svr.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/smp_svr.h diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/storage.c b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/storage.c similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/storage.c rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/storage.c diff --git a/samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/storage.h b/samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/storage.h similarity index 100% rename from samples/boards/nrf52/mesh/onoff_level_lighting_vnd_app/src/storage.h rename to samples/boards/nrf/mesh/onoff_level_lighting_vnd_app/src/storage.h diff --git a/samples/boards/nrf91/nrfx/CMakeLists.txt b/samples/boards/nrf/nrfx/CMakeLists.txt similarity index 100% rename from samples/boards/nrf91/nrfx/CMakeLists.txt rename to samples/boards/nrf/nrfx/CMakeLists.txt diff --git a/samples/boards/nrf91/nrfx/README.rst b/samples/boards/nrf/nrfx/README.rst similarity index 92% rename from samples/boards/nrf91/nrfx/README.rst rename to samples/boards/nrf/nrfx/README.rst index a3923f2c2e9..10dac32a84a 100644 --- a/samples/boards/nrf91/nrfx/README.rst +++ b/samples/boards/nrf/nrfx/README.rst @@ -28,12 +28,12 @@ This sample has been tested on the NordicSemiconductor nRF9160 DK (nrf9160_pca10 Building and Running ******************** -The code can be found in :zephyr_file:`samples/boards/nrf91/nrfx`. +The code can be found in :zephyr_file:`samples/boards/nrf/nrfx`. To build and flash the application: .. zephyr-app-commands:: - :zephyr-app: samples/boards/nrf91/nrfx + :zephyr-app: samples/boards/nrf/nrfx :board: nrf9160_pca10090 :goals: build flash :compact: diff --git a/samples/boards/nrf91/nrfx/prj.conf b/samples/boards/nrf/nrfx/prj.conf similarity index 100% rename from samples/boards/nrf91/nrfx/prj.conf rename to samples/boards/nrf/nrfx/prj.conf diff --git a/samples/boards/nrf91/nrfx/sample.yaml b/samples/boards/nrf/nrfx/sample.yaml similarity index 100% rename from samples/boards/nrf91/nrfx/sample.yaml rename to samples/boards/nrf/nrfx/sample.yaml diff --git a/samples/boards/nrf91/nrfx/src/main.c b/samples/boards/nrf/nrfx/src/main.c similarity index 100% rename from samples/boards/nrf91/nrfx/src/main.c rename to samples/boards/nrf/nrfx/src/main.c diff --git a/samples/boards/nrf52/power_mgr/CMakeLists.txt b/samples/boards/nrf/power_mgr/CMakeLists.txt similarity index 100% rename from samples/boards/nrf52/power_mgr/CMakeLists.txt rename to samples/boards/nrf/power_mgr/CMakeLists.txt diff --git a/samples/boards/nrf52/power_mgr/Kconfig b/samples/boards/nrf/power_mgr/Kconfig similarity index 100% rename from samples/boards/nrf52/power_mgr/Kconfig rename to samples/boards/nrf/power_mgr/Kconfig diff --git a/samples/boards/nrf52/power_mgr/README.rst b/samples/boards/nrf/power_mgr/README.rst similarity index 98% rename from samples/boards/nrf52/power_mgr/README.rst rename to samples/boards/nrf/power_mgr/README.rst index 3a908999c45..33a84ed60c3 100644 --- a/samples/boards/nrf52/power_mgr/README.rst +++ b/samples/boards/nrf/power_mgr/README.rst @@ -39,7 +39,7 @@ Building, Flashing and Running ****************************** .. zephyr-app-commands:: - :zephyr-app: samples/boards/nrf52/power_mgr + :zephyr-app: samples/boards/nrf/power_mgr :board: nrf52_pca10040 :goals: build flash :compact: diff --git a/samples/boards/nrf52/power_mgr/prj.conf b/samples/boards/nrf/power_mgr/prj.conf similarity index 100% rename from samples/boards/nrf52/power_mgr/prj.conf rename to samples/boards/nrf/power_mgr/prj.conf diff --git a/samples/boards/nrf52/power_mgr/prj_tickless.conf b/samples/boards/nrf/power_mgr/prj_tickless.conf similarity index 100% rename from samples/boards/nrf52/power_mgr/prj_tickless.conf rename to samples/boards/nrf/power_mgr/prj_tickless.conf diff --git a/samples/boards/nrf52/power_mgr/sample.yaml b/samples/boards/nrf/power_mgr/sample.yaml similarity index 100% rename from samples/boards/nrf52/power_mgr/sample.yaml rename to samples/boards/nrf/power_mgr/sample.yaml diff --git a/samples/boards/nrf52/power_mgr/src/main.c b/samples/boards/nrf/power_mgr/src/main.c similarity index 100% rename from samples/boards/nrf52/power_mgr/src/main.c rename to samples/boards/nrf/power_mgr/src/main.c diff --git a/samples/boards/nrf52/power_mgr/src/power.c b/samples/boards/nrf/power_mgr/src/power.c similarity index 100% rename from samples/boards/nrf52/power_mgr/src/power.c rename to samples/boards/nrf/power_mgr/src/power.c diff --git a/samples/boards/nrf52/power_mgr/src/sample.h b/samples/boards/nrf/power_mgr/src/sample.h similarity index 100% rename from samples/boards/nrf52/power_mgr/src/sample.h rename to samples/boards/nrf/power_mgr/src/sample.h