]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - LiveCDGUI/download_ext.sh
Fix the order issue in TreeView mode. (#3218)
[Ventoy.git] / LiveCDGUI / download_ext.sh
1 #!/bin/bash
2
3 date +"%Y/%m/%d %H:%M:%S"
4 echo downloading EXT files ...
5
6 wget -q -P ./EXT/ https://github.com/ventoy/KioskFiles/releases/download/v1.0/Porteus-Kiosk-5.2.0-x86_64.iso
7 wget -q -P ./EXT/ https://github.com/ventoy/KioskFiles/releases/download/v1.0/06-fonts.xzm
8
9 [ -d ./__tmp__ ] && rm -rf ./__tmp__
10 mkdir __tmp__
11
12 mount ./EXT/Porteus-Kiosk-5.2.0-x86_64.iso ./__tmp__
13 cp -a ./__tmp__/boot/vmlinuz ./EXT/
14 cp -a ./__tmp__/boot/initrd.xz ./EXT/
15 cp -a ./__tmp__/xzm/* ./EXT/
16
17 umount ./__tmp__
18 rm -rf ./__tmp__
19 rm -f ./EXT/Porteus-Kiosk-5.2.0-x86_64.iso
20
21 date +"%Y/%m/%d %H:%M:%S"
22 echo downloading EXT files finish ...
23