OXIESEC PANEL
- Current Dir:
/
/
lib
/
rpm
/
macros.d
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/08/2025 12:06:29 AM
rwxr-xr-x
📄
macros.cmake
2.2 KB
04/05/2024 07:22:55 PM
rw-r--r--
📄
macros.dwz
1.76 KB
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.efi-srpm
3 KB
11/23/2021 10:32:36 PM
rw-r--r--
📄
macros.environment-modules
75 bytes
07/30/2020 12:13:34 PM
rw-r--r--
📄
macros.fedora-misc
2.76 KB
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.fedora-misc-srpm
239 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.firewalld
239 bytes
09/21/2023 10:00:56 AM
rw-r--r--
📄
macros.forge
12.43 KB
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.ghc-srpm
414 bytes
08/12/2018 10:37:49 AM
rw-r--r--
📄
macros.go-srpm
7.17 KB
04/08/2021 02:45:20 PM
rw-r--r--
📄
macros.info
390 bytes
04/18/2022 05:09:26 PM
rw-r--r--
📄
macros.kernel-srpm
116 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.ldc-srpm
73 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.ldconfig
307 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.lua
375 bytes
08/18/2021 01:25:50 PM
rw-r--r--
📄
macros.mono-srpm
181 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.nodejs-srpm
324 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.ocaml-srpm
737 bytes
10/14/2019 08:31:03 AM
rw-r--r--
📄
macros.openblas-srpm
104 bytes
10/16/2019 08:47:30 PM
rw-r--r--
📄
macros.perl
5.06 KB
05/18/2023 09:20:52 PM
rw-r--r--
📄
macros.perl-srpm
794 bytes
10/13/2019 02:18:38 PM
rw-r--r--
📄
macros.pybytecompile
886 bytes
05/16/2023 12:55:39 PM
rw-r--r--
📄
macros.python
3.36 KB
05/16/2023 12:55:39 PM
rw-r--r--
📄
macros.python-srpm
5.95 KB
05/16/2023 12:55:39 PM
rw-r--r--
📄
macros.python2
1.82 KB
04/21/2022 03:26:14 PM
rw-r--r--
📄
macros.python3
3.63 KB
05/16/2023 12:55:39 PM
rw-r--r--
📄
macros.qt5-qtbase
78 bytes
07/18/2024 05:55:35 PM
rw-r--r--
📄
macros.rust-srpm
61 bytes
01/08/2018 07:15:07 PM
rw-r--r--
📄
macros.selinux-policy
6.61 KB
12/17/2024 04:10:18 AM
rw-r--r--
📄
macros.systemd
4.03 KB
12/17/2024 04:00:31 AM
rw-r--r--
📄
macros.valgrind-srpm
127 bytes
05/15/2023 02:30:31 PM
rw-r--r--
📄
macros.vim
40 bytes
08/02/2022 04:44:39 PM
rw-r--r--
📄
macros.vpath
228 bytes
05/15/2023 02:30:31 PM
rw-r--r--
Editing: macros.efi-srpm
Close
# # EFI specific SRPM macro definitions # # Copyright 2018 Peter M Jones <pjones@redhat.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # %_efi_srpm_macros_setup() %{expand:%{lua: -- test if our arch matches local function arch(archmacro) local target = rpm.expand(" %{_target_cpu} ") local arches = rpm.expand(" " .. archmacro .. " ") local match = string.match(arches, target) return (match ~= nil) end -- give us the arch... local function getarch() if arch("ia64") then return("ia64") elseif arch("x86_64") then return("x64") elseif arch("%{ix86}") then return("ia32") elseif arch("aarch64") then return("aa64") elseif arch("%{arm}") then return("arm") else return("none") end end -- alt arch local function getaltarch() if arch("x86_64") then return("ia32") else return("none") end end -- make some macros local done = rpm.expand("%{?_efi}") if done == nil or done == "" then local arch = getarch() local alt = getaltarch() print("%global _efi x86_64 aarch64 %{arm} %{ix86}\\n") print("%global _efi_vendor cloudlinux\\n") if arch == "none" then print("%global _efi_has_arch 0\\n") else print("%global _efi_has_arch 1\\n") end print("%global _efi_arch " .. getarch() .. "\\n") print("%global _efi_arch_upper " .. string.upper(getarch()) .. "\\n") if alt == "none" then print("%global _efi_has_alt_arch 0\\n") else print("%global _efi_has_alt_arch 1\\n") end print("%global _efi_alt_arch " .. alt .. "\\n") print("%global _efi_alt_arch_upper " .. string.upper(alt) .. "\\n") end }} %efi_srpm_macros_version %{expand:%{_efi_srpm_macros_setup}}3 %efi %{expand:%{_efi_srpm_macros_setup}}%{expand:%{_efi}} %efi_vendor %{expand:%{_efi_srpm_macros_setup}}%{expand:%{_efi_vendor}} %efi_esp_root /boot/efi %efi_esp_efi %{efi_esp_root}/EFI %efi_esp_boot %{efi_esp_efi}/BOOT %efi_esp_dir %{expand:%{_efi_srpm_macros_setup}}%{efi_esp_efi}/centos %efi_arch %{expand:%{_efi_srpm_macros_setup}}%{_efi_arch} %efi_arch_upper %{expand:%{_efi_srpm_macros_setup}}%{_efi_arch_upper} %efi_has_arch %{expand:%{_efi_srpm_macros_setup}}0%{_efi_has_arch} %efi_has_alt_arch %{expand:%{_efi_srpm_macros_setup}}0%{_efi_has_alt_arch} %efi_alt_arch %{expand:%{_efi_srpm_macros_setup}}%{?_efi_alt_arch}%{nil} %efi_alt_arch_upper %{expand:%{_efi_srpm_macros_setup}}%{?_efi_alt_arch_upper}%{nil}