[Buildroot] [git commit] board/mender: sync with board/pc
Arnout Vandecappelle
arnout at mind.be
Tue Feb 4 14:38:16 UTC 2025
commit: https://git.buildroot.net/buildroot/commit/?id=261d33eff8963319aa1c660e4e6bfb59d037175e
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master
and fix dd of=sdc because it is very dangerous to have exiting drive in example
Signed-off-by: Cherniaev Andrei <dungeonlords789 at naver.com>
Signed-off-by: Arnout Vandecappelle <arnout at mind.be>
---
board/mender/x86_64/readme.txt | 8 ++++----
board/pc/readme.txt | 10 ++++++----
2 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/board/mender/x86_64/readme.txt b/board/mender/x86_64/readme.txt
index a9755ec58b..01a0254511 100644
--- a/board/mender/x86_64/readme.txt
+++ b/board/mender/x86_64/readme.txt
@@ -11,14 +11,14 @@ Mender UEFI PC sample config
$ make
-2. Write the Pendrive
+2. Write the image
- The build process will create a Pendrive image called disk.img in
+ The build process will create a all-in-one image called disk.img in
output/images.
Write the image to a pendrive:
- $ dd if=output/images/disk.img of=/dev/${pendrive}; sync
+ $ dd if=output/images/disk.img of=/dev/sdX; sync
Once the process is complete, insert it into the target PC and boot.
@@ -66,4 +66,4 @@ particular needs, as this option changes the mender artifact name.
Using mender
========================
Please read the mender documentation at:
-https://docs.mender.io/2.2/getting-started
+https://docs.mender.io
diff --git a/board/pc/readme.txt b/board/pc/readme.txt
index 99e8f442ea..18b1e3dcf0 100644
--- a/board/pc/readme.txt
+++ b/board/pc/readme.txt
@@ -17,14 +17,14 @@ Bare PC sample config
$ make
-2. Write the pendrive
+2. Write the image
- The build process will create a pendrive image called sdcard.img in
+ The build process will create a all-in-one image called disk.img in
output/images.
Write the image to a pendrive:
- $ dd if=output/images/disk.img of=/dev/sdc; sync
+ $ dd if=output/images/disk.img of=/dev/sdX; sync
Once it's done insert it into the target PC and boot.
@@ -43,7 +43,9 @@ Emulation in qemu (BIOS)
Since the driver will show up in the virtual machine as /dev/vda,
change board/pc/grub-bios.cfg to use root=/dev/vda1 instead of
- root=/dev/sda1. Then rebuild grub2 and the image.
+ root=/dev/sda1. Then rebuild grub2 and the image:
+
+ make grub2-rebuild && make
2. Run the emulation with:
More information about the buildroot
mailing list