Skip to content

Commit

Permalink
Added StarBook MkVI-Intel ite 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean-StarLabs committed Oct 3, 2023
1 parent 9edd74b commit 3af3129
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 6 deletions.
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 $< $@

Expand All @@ -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 $@ $^

Expand Down
6 changes: 6 additions & 0 deletions StarBook/MkVI-Intel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file added StarBook/MkVI-Intel/ite/1.19/1.19.bin
Binary file not shown.
Binary file added StarBook/MkVI-Intel/ite/1.19/efi-B6-I.zip
Binary file not shown.
3 changes: 3 additions & 0 deletions StarBook/MkVI-Intel/ite/1.19/release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Improved charger detection speed
Flicker the power LED when changing power states
Minor power savings
23 changes: 23 additions & 0 deletions StarBook/MkVI-Intel/ite/1.19/startup.nsh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion make/Makefile.nsh_script
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3af3129

Please sign in to comment.