Difference between revisions of "Beaglebone Black/Flashing"

From Teknologisk videncenter
Jump to: navigation, search
m
m
 
(16 intermediate revisions by the same user not shown)
Line 11: Line 11:
 
#Indsæt microSD kort  
 
#Indsæt microSD kort  
 
#Check at filen /dev/mmcblk0 eksisterer (Undgå at lave en fil)
 
#Check at filen /dev/mmcblk0 eksisterer (Undgå at lave en fil)
#wget --no-check-certificate -qO- http://mars.tekkom.dk/data/bbb/bone-debian-10.3-iot-armhf-2020-04-06-4gb.img.xz | xzcat | dd bs=10M of=/dev/mmcblk0 status=progress
+
#wget --no-check-certificate -qO- https://mars.merhot.dk/data/bbb/bone-debian-10.3-iot-armhf-2020-04-06-4gb.img.xz | xzcat | dd bs=10M of=/dev/mmcblk0 status=progress
 
#shutdown  -r 0
 
#shutdown  -r 0
 
#login
 
#login
Line 20: Line 20:
 
#Install debian [[C linux development]] tools
 
#Install debian [[C linux development]] tools
 
[[Image:BBB serial.JPG|500px]]
 
[[Image:BBB serial.JPG|500px]]
 +
=Applying new 2023 image=
 +
#Remove micro-SD card
 +
#Boot from old-image on on-board flash (mmcblk1)
 +
#insert micro-SD card
 +
##new image: wget --no-check-certificate -qO- https://mars.merhot.dk/data/bbb/am335x-debian-12.2-iot-armhf-2023-10-07-4gb.img.xz | xzcat | dd bs=10M of=/dev/mmcblk0 status=progress
 +
#shutdown -h 0
 +
#Remove power from board
 +
#Login check with ''df -h'' that /dev/mmcblk0p1 is more than 7 GB - if not reboot and check again
 +
#apt update and apt upgrade
 +
#Install tmux, man-db
 +
==Flasher==
 +
Flasherimage can be used to install/upgrade eMMC flash on BBB boards
 +
#Install [https://mars.merhot.dk/data/bbb/am335x-eMMC-flasher-debian-12.2-iot-armhf-2023-10-07-4gb.img.xz Flasher Image] on microSD card.
 +
#Insert microSD card in BBB you wish to flash
 +
#Press boot switch (Single switch in USB-A end)
 +
#Apply power and hold switch down until LED's starts blinking
 +
#When the four LED's  starts blinking in sequence, flashing is in progress
 +
##If one LED is on permanently there is an error, and you need the console to debug
 +
#Wait until it shuts down
 +
 +
==Adaption==
 +
*Missing config-pin get https://github.com/beagleboard/bb.org-overlays/blob/master/tools/beaglebone-universal-io/config-pin
 +
** Download with: ''wget https://raw.githubusercontent.com/beagleboard/bb.org-overlays/master/tools/beaglebone-universal-io/config-pin''
 +
*Missing X11 ssh forwarding
  
 
=Links=
 
=Links=
Line 25: Line 49:
 
*[http://beagleboard.org/latest-images/ BeagleBoard Latest Firmware images]
 
*[http://beagleboard.org/latest-images/ BeagleBoard Latest Firmware images]
 
*[https://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Flashing_eMMC  microSD image to flash the eMMC]t)
 
*[https://elinux.org/Beagleboard:BeagleBoneBlack_Debian#Flashing_eMMC  microSD image to flash the eMMC]t)
*[https://ftdichip.com/wp-content/uploads/2021/02/DS_TTL-232R_CABLES.pdf FTDI TTL-232R-3V3 kabel]
+
*[https://ftdichip.com/products/ttl-232r-3v3/ FTDI TTL-232R-3V3 kabel]
 
[[Category:Beagleboard Black]]
 
[[Category:Beagleboard Black]]

Latest revision as of 13:08, 3 April 2024

Flash microSD kort

Ved opstart af BBB er det vigtigt at du

  1. Ikke placerer boardet på ledende materiale (Metal fx)
  2. Tilslutter det serielle kabel - (Sort ledning skal vende op imod ethernet stikket)
    1. Se billede herunder
  3. Åbner terminalemulator for eksempel putty eller mobaXterm
    1. Find COM port nummeret og sæt baudRate til 115200
  4. Boot fra den indbyggede flash. (microSD kort ikke indsat)
  5. Login
  6. sudo bash
  7. Indsæt microSD kort
  8. Check at filen /dev/mmcblk0 eksisterer (Undgå at lave en fil)
  9. wget --no-check-certificate -qO- https://mars.merhot.dk/data/bbb/bone-debian-10.3-iot-armhf-2020-04-06-4gb.img.xz | xzcat | dd bs=10M of=/dev/mmcblk0 status=progress
  10. shutdown -r 0
  11. login
  12. df -h (Check at det er /dev/mmcblk0p1 der er under /)
  13. kør /opt/scripts/tools/grow_partition.sh
  14. shutdown -r 0
  15. check med df -h at ”/” har cirka 8 GB
  16. Install debian C linux development tools

BBB serial.JPG

Applying new 2023 image

  1. Remove micro-SD card
  2. Boot from old-image on on-board flash (mmcblk1)
  3. insert micro-SD card
    1. new image: wget --no-check-certificate -qO- https://mars.merhot.dk/data/bbb/am335x-debian-12.2-iot-armhf-2023-10-07-4gb.img.xz | xzcat | dd bs=10M of=/dev/mmcblk0 status=progress
  4. shutdown -h 0
  5. Remove power from board
  6. Login check with df -h that /dev/mmcblk0p1 is more than 7 GB - if not reboot and check again
  7. apt update and apt upgrade
  8. Install tmux, man-db

Flasher

Flasherimage can be used to install/upgrade eMMC flash on BBB boards

  1. Install Flasher Image on microSD card.
  2. Insert microSD card in BBB you wish to flash
  3. Press boot switch (Single switch in USB-A end)
  4. Apply power and hold switch down until LED's starts blinking
  5. When the four LED's starts blinking in sequence, flashing is in progress
    1. If one LED is on permanently there is an error, and you need the console to debug
  6. Wait until it shuts down

Adaption

Links