From 4d4e98d360bc62c7f7010f4e3783c3e7edbcd184 Mon Sep 17 00:00:00 2001 From: Joe Pearson Date: Tue, 29 Aug 2023 10:29:29 -0400 Subject: [PATCH] Issue-46: Removed 'Intel' from phrase 'Intel FDO' Signed-off-by: Joe Pearson --- CHANGELOG.md | 2 +- README.md | 4 ++-- docker/Dockerfile | 8 ++++---- docs/ocs-api-swagger.yml | 4 ++-- getFDO.sh | 2 +- sample-mfg/start-mfg.sh | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec94b62..a7c8c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file. - Makefile will now download needed FDO release resources from GitHub. ## [1.1.0] - 2023-05-24 -- Issue 25: Updated FDO to support Intel's `1.1.5` release. +- Issue 25: Updated FDO to support FDO Project's `1.1.5` release. - Updated FDO fetch address to reference FDO's new development organization domain. - Updated Docker container's base image to Red Hat UBI 9 minimal. diff --git a/README.md b/README.md index 25536f8..3207191 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ The FDO owner service are packaged as a single docker container that can be run Before continuing with the rest of the FDO process, it is good to verify that you have the correct information necessary to reach the FDO owner service endpoints. **On a Horizon "admin" host** run these simple FDO APIs to verify that the services are accessible and responding properly. (A Horizon admin host is one that has the `horizon-cli` package installed, which provides the `hzn` command, and has the environment variables `HZN_EXCHANGE_URL`, `HZN_FDO_SVC_URL`, and `HZN_EXCHANGE_USER_AUTH` set correctly for your Horizon management hub.) -Intel FIDO Device Onboard Rendezvous Servers: +FIDO Device Onboard Rendezvous Servers: ```bash Development: http://test.fdorv.com:80 @@ -357,7 +357,7 @@ These steps only need to be performed by developers of this project ### Checklist For Moving Up to a New FDO Version -What to modify in our FDO support code when Intel releases a new version of FDO: +What to modify in our FDO support code when the FDO project releases a new version of FDO: - Update `.gitignore` and `.dockerignore` - `mv fdo fdo-` diff --git a/docker/Dockerfile b/docker/Dockerfile index d540afc..6cde191 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,10 +1,10 @@ FROM registry.access.redhat.com/ubi9-minimal:latest # Builds a composite docker service that the "owner" needs to run. Specifically it contains the following services: -# Intel FDO development/test rendezvous service -# Intel FDO to0scheduler service -# Intel FDO OPS (Owner Protocol Service) -# Intel FDO OCS (Owner Companion Service) +# FDO development/test rendezvous service +# FDO to0scheduler service +# FDO OPS (Owner Protocol Service) +# FDO OCS (Owner Companion Service) # Open-horizon ocs-api (OCS REST API) # Building a UBI image: diff --git a/docs/ocs-api-swagger.yml b/docs/ocs-api-swagger.yml index 0e5c34f..ba218d8 100644 --- a/docs/ocs-api-swagger.yml +++ b/docs/ocs-api-swagger.yml @@ -1,8 +1,8 @@ openapi: 3.0.1 info: title: Open Horizon Support for FDO - description: '[Intel FDO](https://software.intel.com/en-us/secure-device-onboard) - (FIDO Device Onboard) is a technology that is created by Intel to make it easy + description: '[FDO](https://software.intel.com/en-us/secure-device-onboard) + (FIDO Device Onboard) is a technology that is contributed by Intel to make it easy and secure to configure edge devices and associate them with an Open Horizon Management Hub instance. Open Horizon has added support for FDO-enabled devices so that the agent will be installed on the device and registered to the Open Horizon Management diff --git a/getFDO.sh b/getFDO.sh index e160c21..4b5301d 100755 --- a/getFDO.sh +++ b/getFDO.sh @@ -14,7 +14,7 @@ chk() { exit $exitCode } -echo "Retrieving Intel FDO Release 1.1.5 dependencies..." +echo "Retrieving FDO Release 1.1.5 dependencies..." mkdir -p ${SCRIPT_LOCATION}/fdo && cd ${SCRIPT_LOCATION}/fdo chk $? 'making fdo dir' diff --git a/sample-mfg/start-mfg.sh b/sample-mfg/start-mfg.sh index 0fcf0e1..a130485 100755 --- a/sample-mfg/start-mfg.sh +++ b/sample-mfg/start-mfg.sh @@ -6,7 +6,7 @@ # - extend the Ownership Voucher to the owner (buyer) # - Switch the device into owner mode -# This script starts/uses the Manufacturer services. See the Intel FDO Manufacturer Enablement Guide +# This script starts/uses the Manufacturer services. See the FDO Manufacturer Enablement Guide # These Manufacturer services are not for production use. # Supports Fedora 36+ and Ubuntu 2x.04