Commit 50e19c9220e5a376f7557b62f03713a45793ab42

Authored by Tim Gover
Committed by GitHub
2 parents f12d9fca a490517d

Merge pull request #150 from timg236/bootcode4-symlink

Replace duplicated bootcode4.bin with links to bootcode4.bin / recovery.bin
mass-storage-gadget/bootcode4.bin renamed to bootcode4.bin
No preview for this file type
debian/rpiboot.install
1 1 rpiboot usr/bin
2   -eeprom-erase/*.txt usr/share/rpiboot/eeprom-erase
3   -eeprom-erase/*.md usr/share/rpiboot/eeprom-erase
4   -eeprom-erase/*.bin usr/share/rpiboot/eeprom-erase
5 2 msd/*.elf usr/share/rpiboot/msd/
6 3 msd/*.bin usr/share/rpiboot/msd/
7 4 recovery usr/share/rpiboot/
  5 +eeprom-erase usr/share/rpiboot
8 6 rpi-imager-embedded usr/share/rpiboot/
9 7 mass-storage-gadget usr/share/rpiboot/
10 8 secure-boot-recovery usr/share/rpiboot/
... ... @@ -12,3 +10,5 @@ secure-boot-msd usr/share/rpiboot/
12 10 secure-boot-example usr/share/rpiboot/
13 11 tools usr/share/rpiboot/
14 12 debian/70-rpiboot.rules /lib/udev/rules.d
  13 +recovery.bin
  14 +bootcode4.bin
... ...
eeprom-erase/bootcode4.bin 0 → 120000
  1 +../recovery.bin
0 2 \ No newline at end of file
... ...
mass-storage-gadget/bootcode4.bin 0 → 120000
  1 +../bootcode4.bin
0 2 \ No newline at end of file
... ...
msd/bootcode4.bin 0 → 120000
  1 +../bootcode4.bin
0 2 \ No newline at end of file
... ...
msd/bootcode4.bin deleted
1 1 Binary files a/msd/bootcode4.bin and /dev/null differ
... ...
eeprom-erase/bootcode4.bin renamed to recovery.bin
No preview for this file type
recovery/bootcode4.bin 0 → 120000
  1 +../recovery.bin
0 2 \ No newline at end of file
... ...
recovery/bootcode4.bin deleted
1 1 Binary files a/recovery/bootcode4.bin and /dev/null differ
... ...
rpi-imager-embedded/bootcode4.bin 0 → 120000
  1 +../bootcode4.bin
0 2 \ No newline at end of file
... ...
rpi-imager-embedded/bootcode4.bin deleted
1 1 Binary files a/rpi-imager-embedded/bootcode4.bin and /dev/null differ
... ...
secure-boot-example/bootcode4.bin 0 → 120000
  1 +../bootcode4.bin
0 2 \ No newline at end of file
... ...
secure-boot-example/bootcode4.bin deleted
1 1 Binary files a/secure-boot-example/bootcode4.bin and /dev/null differ
... ...
secure-boot-msd/bootcode4.bin 0 → 120000
  1 +../bootcode4.bin
0 2 \ No newline at end of file
... ...
secure-boot-msd/bootcode4.bin deleted
1 1 Binary files a/secure-boot-msd/bootcode4.bin and /dev/null differ
... ...
secure-boot-recovery/bootcode4.bin 0 → 120000
  1 +../recovery.bin
0 2 \ No newline at end of file
... ...
secure-boot-recovery/bootcode4.bin deleted
1 1 Binary files a/secure-boot-recovery/bootcode4.bin and /dev/null differ
... ...
win32/install_script.nsi
... ... @@ -95,25 +95,32 @@ Section "Raspberry Pi USB Boot" Sec_rpiboot
95 95 File /r redist
96 96  
97 97 SetOutPath "$INSTDIR\msd"
98   - File /r ..\msd\*.*
  98 + File /r /x bootcode4.bin ..\msd\*.*
  99 + File ..\bootcode4.bin
99 100  
100 101 SetOutPath "$INSTDIR\recovery"
101   - File /r ..\recovery\*.*
  102 + File /r /x bootcode4.bin ..\recovery\*.*
  103 + File /oname=bootcode4.bin ..\recovery.bin
102 104  
103 105 SetOutPath "$INSTDIR\mass-storage-gadget"
104   - File /r ..\mass-storage-gadget\*.*
  106 + File /r /x bootcode4.bin ..\mass-storage-gadget\*.*
  107 + File ..\bootcode4.bin
105 108  
106 109 SetOutPath "$INSTDIR\rpi-imager-embedded"
107   - File /r ..\rpi-imager-embedded\*.*
  110 + File /r /x bootcode4.bin ..\rpi-imager-embedded\*.*
  111 + File ..\bootcode4.bin
108 112  
109 113 SetOutPath "$INSTDIR\secure-boot-example"
110   - File /r ..\secure-boot-example\*.*
  114 + File /r /x bootcode4.bin ..\secure-boot-example\*.*
  115 + File ..\bootcode4.bin
111 116  
112 117 SetOutPath "$INSTDIR\secure-boot-msd"
113   - File /r ..\secure-boot-msd\*.*
  118 + File /r /x bootcode4.bin ..\secure-boot-msd\*.*
  119 + File ..\bootcode4.bin
114 120  
115 121 SetOutPath "$INSTDIR\secure-boot-recovery"
116   - File /r ..\secure-boot-recovery\*.*
  122 + File /r /x bootcode4.bin ..\secure-boot-recovery\*.*
  123 + File /oname=bootcode4.bin ..\recovery.bin
117 124  
118 125 SetOutPath "$INSTDIR\tools"
119 126 File /r ..\tools\*.*
... ...
win32/rpiboot_setup.exe
No preview for this file type