Skip to content

Commit 277b08f

Browse files
committed
Update name of git repo
1 parent fcffb24 commit 277b08f

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ jobs:
272272
# - pi4-builders: A Raspberry Pi OS Bullseye (32-bit).
273273
# - pi5-builder: A Raspberry Pi OS Bookworm lite 64-bit.
274274
# For pi5-ci, install docker (curl -sSL https://get.docker.com/ | sh) and follow the instructions for setting up a new runner in
275-
# https://github.com/bluerobotics/BlueOS-docker/settings/actions/runners/new
275+
# https://github.com/bluerobotics/BlueOS/settings/actions/runners/new
276276

277277
steps:
278278
- name: Install git

core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ FROM base AS download-binaries
3030
COPY tools /home/pi/tools
3131
RUN /home/pi/tools/install-static-binaries.sh
3232

33-
# BlueOS-docker base image
33+
# BlueOS base image
3434
FROM base
3535

3636
# Define arguments for target platform

core/frontend/src/components/app/ReportMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default Vue.extend({
9090
this.show_dialog = state
9191
},
9292
openGitHub(): void {
93-
window.open('https://github.com/bluerobotics/blueos-docker/issues/new/choose', '_blank')
93+
window.open('https://github.com/bluerobotics/BlueOS/issues/new/choose', '_blank')
9494
},
9595
openDiscuss(): void {
9696
window.open(this.discussUrl(), '_blank')

core/frontend/src/components/version-chooser/VersionChooser.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@
139139
<h2>Manual upload</h2>
140140
Use this to upload a .tar docker image. These can be downloaded from
141141
<a
142-
href="https://github.com/bluerobotics/BlueOS-docker/actions/workflows/test-and-deploy.yml"
142+
href="https://github.com/bluerobotics/BlueOS/actions/workflows/test-and-deploy.yml"
143143
target="_blank"
144144
>Github's CI</a>
145145
or generated locally using "docker save"

core/frontend/src/store/mavlink.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class MavlinkStore extends VuexModule {
6363
updateMessage(message: MavlinkMessage): void {
6464
if (message) {
6565
// TODO: Check if this is the best possible way to update `available_messages`
66-
// Reference: https://github.com/bluerobotics/blueos-docker/pull/508#discussion_r718729077
66+
// Reference: https://github.com/bluerobotics/BlueOS/pull/508#discussion_r718729077
6767
// We should not use `message.messageName` as dictionary key since it's a regex,
6868
// the best approach is to use the message name as key
6969
const messageName = (message.messageData.message as any).type

core/frontend/src/utils/helper_functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function castString(value: string): any { // eslint-disable-line @typescr
3232
* */
3333
export function convertGitDescribeToUrl(git_describe: string): string {
3434
const user = 'bluerobotics'
35-
const repository = 'blueos-docker'
35+
const repository = 'BlueOS'
3636
const project_url = `https://github.com/${user}/${repository}`
3737

3838
// Local development version, pointing to root page

core/services/ardupilot_manager/firmware/FirmwareDownload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def get_download_url(self, vehicle: Vehicle, platform: Platform, version: str =
181181

182182
# Autodetect the latest supported version.
183183
# For .apj firmwares (e.g. Pixhawk), we use the latest STABLE version while for the others (e.g. SITL and
184-
# Navigator) we use latest BETA. Specially on this development phase of the blueos-docker/navigator, using
184+
# Navigator) we use latest BETA. Specially on this development phase of the BlueOS/navigator, using
185185
# the BETA release allow us to track and fix introduced bugs faster.
186186
if not version:
187187
if firmware_format == FirmwareFormat.APJ:

install/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# Installation directory
22

3-
This folder contains all necessary files for configuration of the host computer and installation of blueos-docker.
3+
This folder contains all necessary files for configuration of the host computer and installation of BlueOS.
44

55
To use it, just run the installation script in your terminal **as root**, like so:
66

77
```bash
8-
sudo su -c 'curl -fsSL https://raw.githubusercontent.com/bluerobotics/blueos-docker/master/install/install.sh | bash'
8+
sudo su -c 'curl -fsSL https://raw.githubusercontent.com/bluerobotics/BlueOS/master/install/install.sh | bash'
99
```
1010

1111
# Using different versions or custom builds
1212
To use a different remote or version, you can se the following environment variables:
13-
- `REMOTE`: Where the files are, E.g: https://raw.githubusercontent.com/patrickelectric/blueos-docker
13+
- `REMOTE`: Where the files are, E.g: https://raw.githubusercontent.com/patrickelectric/BlueOS-docker
1414
- `VERSION`: Branch (If using GitHub) or folder (If using HTTP server) to be used.
1515

1616
Remember that to do that, you need to set the environment variables as root:
1717
```sh
1818
sudo su
1919
# You can also change the install URL to use a different source for files
20-
curl -fsSL https://raw.githubusercontent.com/patrickelectric/blueos-docker/example-version/install/install.sh | export REMOTE=https://raw.githubusercontent.com/patrickelectric/blueos-docker export VERSION=example-version bash
20+
curl -fsSL https://raw.githubusercontent.com/patrickelectric/BlueOS-Docker/example-version/install/install.sh | export REMOTE=https://raw.githubusercontent.com/patrickelectric/BlueOS-docker export VERSION=example-version bash
2121
```

install/boards/bcm_2712.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -e
55
echo "Configuring BCM2712 board (Raspberry Pi 5).."
66

77
VERSION="${VERSION:-master}"
8-
GITHUB_REPOSITORY=${GITHUB_REPOSITORY:-bluerobotics/blueos-docker}
8+
GITHUB_REPOSITORY=${GITHUB_REPOSITORY:-bluerobotics/BlueOS}
99
REMOTE="${REMOTE:-https://raw.githubusercontent.com/${GITHUB_REPOSITORY}}"
1010
ROOT="$REMOTE/$VERSION"
1111
CMDLINE_FILE=/boot/firmware/cmdline.txt

install/boards/bcm_27xx.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
echo "Configuring BCM27XX board (Raspberry Pi 4).."
44

55
VERSION="${VERSION:-master}"
6-
GITHUB_REPOSITORY=${GITHUB_REPOSITORY:-bluerobotics/blueos-docker}
6+
GITHUB_REPOSITORY=${GITHUB_REPOSITORY:-bluerobotics/BlueOS}
77
REMOTE="${REMOTE:-https://raw.githubusercontent.com/${GITHUB_REPOSITORY}}"
88
ROOT="$REMOTE/$VERSION"
99
CMDLINE_FILE=/boot/cmdline.txt

0 commit comments

Comments
 (0)