diff --git a/x230/README.md b/x230/README.md index bb2712c..1173f34 100644 --- a/x230/README.md +++ b/x230/README.md @@ -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 -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. diff --git a/x230/external_install_top.sh b/x230/external_install_top.sh index 8f2925d..c88cdda 100755 --- a/x230/external_install_top.sh +++ b/x230/external_install_top.sh @@ -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