From 4d935d62fc126d52b186a81bfd214c0a138709b0 Mon Sep 17 00:00:00 2001 From: Eugene Mirotin Date: Tue, 13 Jun 2017 12:42:42 +0300 Subject: [PATCH] improve wording --- CHANGELOG.md | 4 ++-- doc/automated-init.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10e88240..756d579d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,9 +15,9 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Allow OS version selection when doing `resin device init` - Actually tolerate the `--yes` param to `resin device init` - Allows passing `--drive` to `resin device init` -- List detected drives with `resin os available-drives` +- List detected drives with `resin util available-drives` - Add the `resin os build-config` method to pass the interactive config step once -and reuse the built file for consequent `resin os configure` calls (added the new `--config` param to it), +and reuse the built file for subsequent `resin os configure` calls (added the new `--config` param to it), and for `resin device init` (same `--config` param) - Improve the supported device types listing diff --git a/doc/automated-init.md b/doc/automated-init.md index e1a11ee0..d581d4e4 100644 --- a/doc/automated-init.md +++ b/doc/automated-init.md @@ -1,4 +1,4 @@ -# Provisioning Resin.io devices in automated (non-interactive mode) +# Provisioning Resin.io devices in automated (non-interactive) mode This document describes how to run the `device init` command in non-interactive mode. @@ -53,9 +53,9 @@ To skip this interactive step we need to buid this configuration once and save i Let's say we will place it into the `CONFIG_FILE` path, like _./resin-os/raspberrypi3-config.json_. -We also need to put the OS image somewhere, let's call this path `OS_IMAGE_PATH`, it cam be something like _./resin-os/raspberrypi3-v2.0.6+rev1.prod.img_. +We also need to put the OS image somewhere, let's call this path `OS_IMAGE_PATH`, it can be something like _./resin-os/raspberrypi3-v2.0.6+rev1.prod.img_. -1. First we need to download the OS image once. That's needed for building the config, and will speedup the consequent operations as the downloaded OS image is placed into the local cache. +1. First we need to download the OS image once. That's needed for building the config, and will speedup the subsequent operations as the downloaded OS image is placed into the local cache. Run: ```bash @@ -78,7 +78,7 @@ We also need to put the OS image somewhere, let's call this path `OS_IMAGE_PATH` Now you're ready to run the command in the beginning of this guide. -Please not again that all of these steps only need to be done once (unless you need to change something), and once all the parameters are collected the main init command can be run unchanged. +Please note again that all of these steps only need to be done once (unless you need to change something), and once all the parameters are collected the main init command can be run unchanged. But there are still some nuances to cover, please read below.