Browse Source

x230: add support to flash any 4M image using external_install_top.sh

put some emphasis on choosing an image and support flashing any 4M image
externally.
pull/102/head
Martin Kepplinger 5 years ago
parent
commit
ebf5d55062
2 changed files with 5 additions and 3 deletions
  1. +4
    -2
      x230/README.md
  2. +1
    -1
      x230/external_install_top.sh

+ 4
- 2
x230/README.md View File

@ -192,13 +192,15 @@ That's it. Keep the backup safe. Here are the options (just so you know):
* The `-l` option will (re-)lock your flash ROM, in case you want to force
yourself (and others) to hardware-flashing, see [updating](#updating).
#### BIOS: the 4MB chip
#### Your BIOS choice: the 4MB chip
Now it's time to make your choice! Choose one of the images included in our
release and select it during running:
sudo ./external_install_top.sh -k <backup-file-to-create>
Select the image to flash and that's it.
This selects and flashes it and that's it.
Keep the backup safe, assemble and
turn on the X230. coreboot will do hardware init and start SeaBIOS.


+ 1
- 1
x230/external_install_top.sh View File

@ -92,7 +92,7 @@ if [ ! "$have_input_image" -gt 0 ] ; then
fi
prompt="Please select a file to flash or start with the -i option to use a different one:"
options=( $(find -maxdepth 1 -name "x230_coreboot_seabios*rom" -print0 | xargs -0) )
options=( $(find -maxdepth 1 -name "*rom" -print0 | xargs -0) )
PS3="$prompt "
select INPUT_IMAGE_PATH in "${options[@]}" "Quit" ; do


Loading…
Cancel
Save