mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-21 13:57:52 +00:00
8da5d5d723
- modify bash to have it configured with -Os
29 lines
614 B
Bash
Executable File
29 lines
614 B
Bash
Executable File
#!/bin/bash
|
|
# Initialize the USB and network device drivers,
|
|
# invoke a recovery shell and prompt the user for how to proceed
|
|
|
|
. /etc/functions
|
|
. /tmp/config
|
|
|
|
TRACE "Under /bin/x230-flash.init"
|
|
|
|
insmod /lib/modules/ehci-hcd.ko
|
|
insmod /lib/modules/ehci-pci.ko
|
|
insmod /lib/modules/xhci-hcd.ko
|
|
insmod /lib/modules/xhci-pci.ko
|
|
insmod /lib/modules/e1000e.ko
|
|
insmod /lib/modules/usb-storage.ko
|
|
|
|
tpmr extend -ix 4 -ic recovery
|
|
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/x230.rom'
|
|
echo ''
|
|
|
|
exec /bin/bash
|