mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
30963e121f
They're the same other than a TRACE, combine them. Use busybox insmod since the insmod script uses bash, we don't need the TPM PCRs on legacy-flash-boards. Remove PCR4 extend, these boards lack TPM configuration. Update ROM example name. Signed-off-by: Jonathon Hall <jonathon.hall@puri.sm>
28 lines
639 B
Bash
Executable File
28 lines
639 B
Bash
Executable File
#!/bin/ash
|
|
# Initialize the USB and network device drivers,
|
|
# invoke a recovery shell and prompt the user for how to proceed
|
|
|
|
. /etc/ash_functions
|
|
. /tmp/config
|
|
|
|
TRACE "Under /bin/xx30-flash.init"
|
|
|
|
busybox insmod /lib/modules/ehci-hcd.ko
|
|
busybox insmod /lib/modules/ehci-pci.ko
|
|
busybox insmod /lib/modules/xhci-hcd.ko
|
|
busybox insmod /lib/modules/xhci-pci.ko
|
|
busybox insmod /lib/modules/e1000e.ko
|
|
busybox insmod /lib/modules/usb-storage.ko
|
|
|
|
sleep 2
|
|
|
|
echo '***** Starting recovery shell'
|
|
echo ''
|
|
echo 'To install from flash drive:'
|
|
echo ''
|
|
echo ' mount -o ro /dev/sdb1 /media'
|
|
echo ' flash.sh /media/xx30-legacy.rom'
|
|
echo ''
|
|
|
|
exec /bin/sh
|