From 94b208954e4467631fd46614eecc040fa765f756 Mon Sep 17 00:00:00 2001 From: cbvicious <69374960+cbvicious@users.noreply.github.com> Date: Wed, 11 Sep 2024 09:14:46 -0600 Subject: [PATCH 1/3] Update linux-native-hardware.mdx (#1423) Add Bluetooth information to Linux Native Hardware page Co-authored-by: Jonathan Bennett Co-authored-by: rcarteraz --- .../devices/linux-native-hardware/linux-native-hardware.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/hardware/devices/linux-native-hardware/linux-native-hardware.mdx b/docs/hardware/devices/linux-native-hardware/linux-native-hardware.mdx index 5ecfa3c9..65afb600 100644 --- a/docs/hardware/devices/linux-native-hardware/linux-native-hardware.mdx +++ b/docs/hardware/devices/linux-native-hardware/linux-native-hardware.mdx @@ -115,6 +115,8 @@ Webserver: Port: 443 # Port for Webserver & Webservices RootPath: /usr/share/doc/meshtasticd/web # Root Dir of WebServer ``` +### Bluetooth Support +Bluetooth is currently unsupported and not functional on Linux Native devices. This may change in the future. ### GPS Support From 97da7c523d436c018044c1ade04ab41192858d82 Mon Sep 17 00:00:00 2001 From: rcarteraz Date: Wed, 11 Sep 2024 14:45:59 -0700 Subject: [PATCH 2/3] Update trademark-grants.mdx (#1443) --- docs/legal/trademark-grants.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/legal/trademark-grants.mdx b/docs/legal/trademark-grants.mdx index c6dee539..e2fad89c 100644 --- a/docs/legal/trademark-grants.mdx +++ b/docs/legal/trademark-grants.mdx @@ -53,3 +53,5 @@ This process ensures transparency and community involvement in the granting of t - Details: Simon is a Meshtastic designer of devices, device enclosures and accessories that carry the "Meshtastic" , Meshtastic.org URL and "M" logos. The use of the Meshtastic Logo and Trademarks does not imply Simon is sponsored or endorsed by Meshtastic. Simon also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. - Grant: [Rokland LLC](https://www.rokland.com) - Details: Rokland LLC is a Meshtastic contributor/distributor of parts and devices that run Meshtastic firmware. The Meshtastic "M" logo will be used on a promotional give-away t-shirt to promote the RAKwireless WisMesh Pocket product. The use of the Meshtastic Logo and Trademarks does not imply Rokland LLC is sponsored or endorsed by Meshtastic. Rokland LLC also agrees to maintain compliance with the Meshtastic Legal requirements. This grant is revokable at any time for any reason. +- Grant: Meshtastic Solutions LLC + - Details: Meshtastic Solutions LLC is a company focused on Meshtastic Research and Development and expanding Meshtastic into new industries. Meshtastic Solutions LLC is granted use of all Meshtastic logos and trademarks. Meshtastic Solutions LLC agrees to maintain compliance with all Meshtastic Legal requirements. From 84badc3ab6521c2a70e6358bdda63bfdfca5decf Mon Sep 17 00:00:00 2001 From: Adam McQuilkin <46639306+ajmcquilkin@users.noreply.github.com> Date: Wed, 11 Sep 2024 16:00:11 -0700 Subject: [PATCH 3/3] Added submodule clone command to pull in design repo (#1444) --- docs/development/documentation/local-dev.mdx | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/docs/development/documentation/local-dev.mdx b/docs/development/documentation/local-dev.mdx index 45fb9ff0..ae64ff27 100644 --- a/docs/development/documentation/local-dev.mdx +++ b/docs/development/documentation/local-dev.mdx @@ -4,10 +4,6 @@ title: Serving Docs Locally for Development sidebar_label: Local Development --- -:::note -Some things won't display properly like logos or protobufs page, this is not cause for concern. -::: - ## Prerequisites In order to set up your local environment, you will need to install: @@ -24,17 +20,23 @@ Log into GitHub and create a fork of the [meshtastic/meshtastic](https://github. ### Clone your Meshtastic Repository fork :::note -Replace `username` with your GitHub username. +Replace `YOUR_GITHUB_USERNAME` with your GitHub username. ::: -```shell title="Clone username/Meshtastic Repo" -git clone https://github.com/username/meshtastic.git +```shell title="Clone your Fork of the Documentation Repository" +git clone https://github.com/YOUR_GITHUB_USERNAME/meshtastic.git ``` -### Change directory to Local copy +### Change directory into your Local Copy ```shell title="Change Directory" -cd ~/meshtastic +cd ./meshtastic +``` + +### Install Submodules + +```shell title="Install Submodules" +git submodule update --init --recursive ``` ### Install Dependencies