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..043aa45 100644 --- a/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx +++ b/docs/comet/advanced/linux-kernel/building-linux-kernel.mdx @@ -28,11 +28,11 @@ 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 +$ cd linux ``` @@ -163,8 +163,8 @@ $ 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 +$ 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..4c85fdb 100644 --- a/docs/comet/advanced/linux-kernel/customise-device-tree.mdx +++ b/docs/comet/advanced/linux-kernel/customise-device-tree.mdx @@ -28,8 +28,8 @@ 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 + $ cd linux ```