diff --git a/Makefile b/Makefile index 5253bcfb..150dff72 100644 --- a/Makefile +++ b/Makefile @@ -34,10 +34,6 @@ $(OUTPUT_DIR): mkdir -p $@ # Just the binary -$(OUTPUT_DIR)/$(version).rom: $(version).rom - mv $< $@ - -# The target file $(OUTPUT_DIR)/$(version).$(file_type): $(version).$(file_type) mv $< $@ @@ -54,7 +50,7 @@ $(OUTPUT_DIR)/startup.nsh: $(OUTPUT_DIR) printf '$(nsh_script)' > $@ $(OUTPUT_DIR)/efi-$(sku).zip: $(OUTPUT_DIR)/startup.nsh \ - $(OUTPUT_DIR)/$(version).rom \ + $(OUTPUT_DIR)/$(version).$(file_type) \ binaries/$(nsh_tool).efi zip -rj $@ $^ diff --git a/StarBook/MkVI-Intel/README.md b/StarBook/MkVI-Intel/README.md index 5f6acbc7..694a5616 100644 --- a/StarBook/MkVI-Intel/README.md +++ b/StarBook/MkVI-Intel/README.md @@ -420,3 +420,9 @@ #### ite: [1.18](https://github.com/StarLabsLtd/firmware/raw/master/StarBook/MkVI-Intel/ite/1.18/efi-B6-I.zip) 2023-09-27 > Fixed an issue where batteries werent initialised + +#### ite: [1.19](https://github.com/StarLabsLtd/firmware/raw/master/StarBook/MkVI-Intel/ite/1.19/efi-B6-I.zip) 2023-10-03 +> Improved charger detection speed +> Flicker the power LED when changing power states +> Minor power savings + diff --git a/StarBook/MkVI-Intel/ite/1.19/1.19.bin b/StarBook/MkVI-Intel/ite/1.19/1.19.bin new file mode 100644 index 00000000..efc59a2b Binary files /dev/null and b/StarBook/MkVI-Intel/ite/1.19/1.19.bin differ diff --git a/StarBook/MkVI-Intel/ite/1.19/efi-B6-I.zip b/StarBook/MkVI-Intel/ite/1.19/efi-B6-I.zip new file mode 100644 index 00000000..bcc0d3e1 Binary files /dev/null and b/StarBook/MkVI-Intel/ite/1.19/efi-B6-I.zip differ diff --git a/StarBook/MkVI-Intel/ite/1.19/release_notes.md b/StarBook/MkVI-Intel/ite/1.19/release_notes.md new file mode 100644 index 00000000..8393b1b5 --- /dev/null +++ b/StarBook/MkVI-Intel/ite/1.19/release_notes.md @@ -0,0 +1,3 @@ +Improved charger detection speed +Flicker the power LED when changing power states +Minor power savings diff --git a/StarBook/MkVI-Intel/ite/1.19/startup.nsh b/StarBook/MkVI-Intel/ite/1.19/startup.nsh new file mode 100644 index 00000000..3200ba9b --- /dev/null +++ b/StarBook/MkVI-Intel/ite/1.19/startup.nsh @@ -0,0 +1,23 @@ +echo -off + cls + set payload 1.19.bin + + echo "*******************************************************************" + echo "********************* BIOS & Firmware Update **********************" + echo "*******************************************************************" + echo " " + echo "This update is for the StarBook MkVI-Intel. Installing on any other laptop will cause it not to start." + echo " " + echo "Press Enter to update firmware or press Q to quit." + pause + echo "This update contains the following changes:" + echo "Improved charger detection speed" +echo "Flicker the power LED when changing power states" +echo "Minor power savings" + for %a run (0 10) + if exist fs%a:ifu.efi then + fs%a: + ifu %payload% 128 + reset + endif + endfor diff --git a/make/Makefile.nsh_script b/make/Makefile.nsh_script index 6b032186..53211511 100644 --- a/make/Makefile.nsh_script +++ b/make/Makefile.nsh_script @@ -2,7 +2,7 @@ nsh_script = echo -off\n nsh_script += cls\n -nsh_script += set payload $(version).rom\n +nsh_script += set payload $(version).bin\n nsh_script += \n # nsh_script += echo "*******************************************************************"\n # nsh_script += echo ".d8888. d888888b .d8b. d8888b. db .d8b. d8888b. .d8888. "\n