Skip to content

Commit ed94c45

Browse files
committed
msd: Remove legacy msd/start4.elf and use a common legacy msd .elf file
The legacy VPU firmware MSD drivers are deprecated on CM4 / Pi4. Remove this but link to a generic legacy VPU MSD firmware which supports 2711 and earlier chips. N.B. mass-storage-gadget64-cm3 implements same functionality as the Linux mass-storage-gadget. The only difference is in how the files are loaded because older boards don't support a bootloader ramdisk. To run the legacy VPU msd firmware on 2711 run sudo rpiboot -d ./msd
1 parent 805a4fd commit ed94c45

File tree

4 files changed

+2
-4
lines changed

4 files changed

+2
-4
lines changed

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ GIT_VER=$(shell git rev-parse HEAD 2>/dev/null | cut -c1-8 || echo "")
55
HAVE_XXD=$(shell xxd -v >/dev/null 2>/dev/null && echo y)
66
INSTALL_PREFIX?=/usr
77

8-
rpiboot: main.c bootfiles.c decode_duid.c msd/bootcode.h msd/start.h msd/bootcode4.h msd/start4.h
8+
rpiboot: main.c bootfiles.c decode_duid.c msd/bootcode.h msd/start.h msd/bootcode4.h
99
$(CC) -Wall -Wextra -g $(CPPFLAGS) $(CFLAGS) -o $@ main.c bootfiles.c decode_duid.c `pkg-config --cflags --libs libusb-1.0` -DGIT_VER="\"$(GIT_VER)\"" -DPKG_VER="\"$(PKG_VER)\"" -DBUILD_DATE="\"$(BUILD_DATE)\"" -DINSTALL_PREFIX=\"$(INSTALL_PREFIX)\" $(LDFLAGS)
1010

1111
ifeq ($(HAVE_XXD),y)
@@ -36,7 +36,6 @@ install: rpiboot
3636
install -m 644 msd/bootcode.bin $(INSTALL_PREFIX)/share/rpiboot/msd
3737
install -m 644 msd/bootcode4.bin $(INSTALL_PREFIX)/share/rpiboot/msd
3838
install -m 644 msd/start.elf $(INSTALL_PREFIX)/share/rpiboot/msd
39-
install -m 644 msd/start4.elf $(INSTALL_PREFIX)/share/rpiboot/msd
4039
install -m 644 mass-storage-gadget64/boot.img $(INSTALL_PREFIX)/share/rpiboot/mass-storage-gadget64
4140
install -m 644 mass-storage-gadget64/config.txt $(INSTALL_PREFIX)/share/rpiboot/mass-storage-gadget64
4241
install -m 644 mass-storage-gadget64/bootfiles.bin $(INSTALL_PREFIX)/share/rpiboot/mass-storage-gadget64

main.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
#include "msd/bootcode.h"
1111
#include "msd/start.h"
1212
#include "msd/bootcode4.h"
13-
#include "msd/start4.h"
1413
// 2712 doesn't use start5.elf
1514

1615
/*
@@ -751,7 +750,7 @@ FILE * check_file(const char * dir, const char *fname, int use_fmem)
751750
if(strcmp(fname, "bootcode4.bin") == 0)
752751
fp = fmemopen(msd_bootcode4_bin, msd_bootcode4_bin_len, "rb");
753752
else if(strcmp(fname, "start4.elf") == 0)
754-
fp = fmemopen(msd_start4_elf, msd_start4_elf_len, "rb");
753+
fp = fmemopen(msd_start_elf, msd_start_elf_len, "rb");
755754
}
756755
else
757756
{

msd/start.elf

13 KB
Binary file not shown.

msd/start4.elf

-295 KB
Binary file not shown.

0 commit comments

Comments
 (0)