From 5ed4753e9d4ae0c5d29b5869914e3135003cfc34 Mon Sep 17 00:00:00 2001 From: dhruveshb-mecha Date: Fri, 12 Sep 2025 04:24:04 -0400 Subject: [PATCH 1/2] fix(doc): org url update --- .../bootloader/building-uboot-from-source.mdx | 4 ++-- .../advanced/linux-kernel/building-linux-kernel.mdx | 12 +++++++----- .../advanced/linux-kernel/customise-device-tree.mdx | 5 +++-- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/docs/comet/advanced/bootloader/building-uboot-from-source.mdx b/docs/comet/advanced/bootloader/building-uboot-from-source.mdx index da57e71..5beb15e 100644 --- a/docs/comet/advanced/bootloader/building-uboot-from-source.mdx +++ b/docs/comet/advanced/bootloader/building-uboot-from-source.mdx @@ -35,8 +35,8 @@ If you want to explore more about U-Boot, you can refer to the **U-Boot Document On the **host machine**, clone the U-Boot repository: ```bash -$ git clone https://github.com/chiragp-mecha/u-boot -$ cd u-boot/ +$ git https://github.com/mecha-org/u-boot +$ cd u-boot ``` If you're using Ubuntu’s toolchain, make sure to install the necessary cross-compilation tools: diff --git a/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx b/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx index eefb60a..c7c8100 100644 --- a/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx +++ b/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx @@ -28,11 +28,12 @@ These variables ensure that the correct architecture and compiler are used for t ## 2. Clone the Kernel Source Repository -clone the kernel source repository from [GitHub](https://github.com/chiragp-mecha/linux-imx) to your host machine: +clone the kernel source repository from [GitHub](https://github.com/mecha-org/linux) to your host machine: ```bash -$ git clone https://github.com/chiragp-mecha/linux-imx -$ cd linux-imx +$ git clone https://github.com/mecha-org/linux +$ git checkout imx-6.12.20-demo +$ cd linux ``` @@ -163,8 +164,9 @@ $ sudo apt-get update && sudo apt-get install -y sudo curl git rsync cpio 1. Clone the Linux kernel source: ```bash -$ git clone https://github.com/chiragp-mecha/linux-imx -$ cd linux-imx +$ git clone https://github.com/mecha-org/linux +$ git checkout imx-6.12.20-demo +$ cd linux ``` diff --git a/docs/comet/advanced/linux-kernel/customise-device-tree.mdx b/docs/comet/advanced/linux-kernel/customise-device-tree.mdx index 8944187..57a1fd9 100644 --- a/docs/comet/advanced/linux-kernel/customise-device-tree.mdx +++ b/docs/comet/advanced/linux-kernel/customise-device-tree.mdx @@ -28,8 +28,9 @@ Before modifying the DTB, ensure your **host machine** has the necessary tools: Clone the repository if you haven’t already: ```bash - $ git clone https://github.com/chiragp-mecha/linux-imx - $ cd linux-imx + $ git clone https://github.com/mecha-org/linux + $ git checkout imx-6.12.20-demo + $ cd linux ``` From 33aa5354ab9346bf8571dbd4161d92e87ce7cda3 Mon Sep 17 00:00:00 2001 From: dhruveshb-mecha Date: Fri, 12 Sep 2025 04:34:19 -0400 Subject: [PATCH 2/2] fix(doc): source branch update remove --- docs/comet/advanced/linux-kernel/building-linux-kernel.mdx | 2 -- docs/comet/advanced/linux-kernel/customise-device-tree.mdx | 1 - 2 files changed, 3 deletions(-) diff --git a/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx b/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx index c7c8100..043aa45 100644 --- a/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx +++ b/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx @@ -32,7 +32,6 @@ clone the kernel source repository from [GitHub](https://github.com/mecha-org/li ```bash $ git clone https://github.com/mecha-org/linux -$ git checkout imx-6.12.20-demo $ cd linux ``` @@ -165,7 +164,6 @@ $ sudo apt-get update && sudo apt-get install -y sudo curl git rsync cpio ```bash $ git clone https://github.com/mecha-org/linux -$ git checkout imx-6.12.20-demo $ cd linux ``` diff --git a/docs/comet/advanced/linux-kernel/customise-device-tree.mdx b/docs/comet/advanced/linux-kernel/customise-device-tree.mdx index 57a1fd9..4c85fdb 100644 --- a/docs/comet/advanced/linux-kernel/customise-device-tree.mdx +++ b/docs/comet/advanced/linux-kernel/customise-device-tree.mdx @@ -29,7 +29,6 @@ Before modifying the DTB, ensure your **host machine** has the necessary tools: ```bash $ git clone https://github.com/mecha-org/linux - $ git checkout imx-6.12.20-demo $ cd linux ```