Update
This commit is contained in:
parent
8b7393f50c
commit
15ca5d6069
|
@ -1,15 +0,0 @@
|
||||||
# These are supported funding model platforms
|
|
||||||
|
|
||||||
#github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
|
||||||
|
|
||||||
#patreon: # Replace with a single Patreon username
|
|
||||||
#open_collective: # Replace with a single Open Collective username
|
|
||||||
#ko_fi: # Replace with a single Ko-fi username
|
|
||||||
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
|
||||||
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
|
||||||
#liberapay: # Replace with a single Liberapay username
|
|
||||||
#issuehunt: # Replace with a single IssueHunt username
|
|
||||||
#otechie: # Replace with a single Otechie username
|
|
||||||
#custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
|
|
||||||
#github: [Valeria-Fadeeva]
|
|
||||||
custom: ["https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066", "https://yoomoney.ru/to/4100115921160758", "https://qiwi.com/n/VALERIAFADEEVA", "valeria.fadeeva.me"]
|
|
2
push.sh
2
push.sh
|
@ -1,3 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
git add . && git commit -m "Update" && git push
|
git add . && git commit -m "Update" && git push
|
||||||
|
|
||||||
|
echo "Ready"
|
||||||
|
|
|
@ -140,10 +140,12 @@ while getopts ":hag:xyz" arg; do
|
||||||
|
|
||||||
efi_image="$BOOT_PATH/$kernel_name.efi"
|
efi_image="$BOOT_PATH/$kernel_name.efi"
|
||||||
efi_image_fallback="$BOOT_PATH/$kernel_name-fallback.efi"
|
efi_image_fallback="$BOOT_PATH/$kernel_name-fallback.efi"
|
||||||
|
efi_image_fallback_terminal="$BOOT_PATH/$kernel_name-fallback-terminal.efi"
|
||||||
|
|
||||||
declare -a images=()
|
declare -a images=()
|
||||||
images+=("$efi_image")
|
images+=("$efi_image")
|
||||||
images+=("$efi_image_fallback")
|
images+=("$efi_image_fallback")
|
||||||
|
images+=("$efi_image_fallback_terminal")
|
||||||
|
|
||||||
for image in "${images[@]}";
|
for image in "${images[@]}";
|
||||||
do
|
do
|
||||||
|
@ -305,7 +307,7 @@ function gen_image() {
|
||||||
ukify_args+=(--output "$efi_image_fallback_terminal")
|
ukify_args+=(--output "$efi_image_fallback_terminal")
|
||||||
ukify_args+=(--measure)
|
ukify_args+=(--measure)
|
||||||
|
|
||||||
echo "==> Ukify image $kernel_name $efi_image_fallback TERMINAL"
|
echo "==> Ukify image $kernel_name $efi_image_fallback_terminal TERMINAL"
|
||||||
if [ -f "${ukify_conf}" ]; then
|
if [ -f "${ukify_conf}" ]; then
|
||||||
# ukify_args+=(--sbat='sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md
|
# ukify_args+=(--sbat='sbat,1,SBAT Version,sbat,1,https://github.com/rhboot/shim/blob/main/SBAT.md
|
||||||
# uki.author.myimage,1,UKI for System,uki.author.myimage,1,https://www.freedesktop.org/software/systemd/man/systemd-stub.html')
|
# uki.author.myimage,1,UKI for System,uki.author.myimage,1,https://www.freedesktop.org/software/systemd/man/systemd-stub.html')
|
||||||
|
|
Loading…
Reference in New Issue