We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bce7c3 commit 29bc1d7Copy full SHA for 29bc1d7
1 file changed
channels/releng/config.any
@@ -52,11 +52,10 @@ usershell="/bin/zsh"
52
noaur=true
53
54
# kernel config
55
-kernel_config_line="core linux linux-headers vmlinuz-linux linux"
56
-kernel_package=$(echo ${kernel_config_line} | awk '{print $2}')
57
-kernel_headers_packages=$(echo ${kernel_config_line} | awk '{print $3}')
58
-kernel_filename=$(echo ${kernel_config_line} | awk '{print $4}')
59
-kernel_mkinitcpio_profile=$(echo ${kernel_config_line} | awk '{print $5}')
+_kernel_config_line=("core" "vmlinuz-linux" "linux")
+kernel="${_kernel_config_line[0]}"
+kernel_filename="${_kernel_config_line[1]}"
+kernel_mkinitcpio_profile="${_kernel_config_line[2]}"
60
61
# Use mkalteriso written in a traditional shell script
62
# instead of the C ++ version of mkalteriso.
0 commit comments