This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # | |
| # Automatically generated make config: don't edit | |
| # Busybox version: 1.37.0 | |
| # Mon Oct 13 13:22:49 2025 | |
| # | |
| CONFIG_HAVE_DOT_CONFIG=y | |
| # | |
| # Settings | |
| # | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Yocto Project Summit 2024 - Presentation Script | |
| =============================================== | |
| # Setup | |
| 1. Write image to sdcard | |
| 2. Put sdcard image in Pi | |
| 3. Connect up USB-to-serial cable from RPi4 to demo laptop | |
| 4. Connect ethernet cable from RPi4 to Ethernet switch | |
| 5. Connect HDMI from RPi4 to monitor | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ### WIĘCEJ NA LINUXDEV.PL ### | |
| sudo apt build-dep linux linux-image-unsigned-$(uname -r) | |
| sudo apt install libncurses-dev gawk flex bison openssl libssl-dev dkms libelf-dev libudev-dev libpci-dev libiberty-dev autoconf llvm | |
| git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git | |
| cd boot/ | |
| cp config-6.8.0-39-generic /media/sf_shared_vm/ | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # | |
| # Automatically generated file; DO NOT EDIT. | |
| # Buildroot 2024.02-962-gb37792f768 Configuration | |
| # | |
| BR2_HAVE_DOT_CONFIG=y | |
| BR2_HOST_GCC_AT_LEAST_4_9=y | |
| BR2_HOST_GCC_AT_LEAST_5=y | |
| BR2_HOST_GCC_AT_LEAST_6=y | |
| BR2_HOST_GCC_AT_LEAST_7=y | |
| BR2_HOST_GCC_AT_LEAST_8=y | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | git clone https://git.buildroot.org/buildroot | |
| cd buildroot | |
| # checkout na ostatni branch LTS: | |
| git checkout -b my_root origin/2024.02.x | |
| # korzystamy z configa dla QEMU | |
| make qemu_x86_64_defconfig | |
| # budujemy | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| set -x | |
| if [ $# -lt 1 ]; then | |
| RPI_DIR=$(pwd) | |
| else | |
| RPI_DIR=$1 | |
| fi | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| set -x | |
| RPI_DIR=$1 | |
| cd "$RPI_DIR" || exit | |
| # Ściągamy obraz dla Raspberry Pi 3b+ | |
| wget https://downloads.raspberrypi.org/raspios_arm64/images/raspios_arm64-2023-05-03/2023-05-03-raspios-bullseye-arm64.img.xz |