Tagged Questions

2
votes
1answer
193 views

How to automate linux kernel module compilation when installing a new kernel?

I am writing a Linux kernel module. It is released with all the source files (although the license is proprietary) to be compiled against the running kernel. When installing my module (distributed as ...
1
vote
1answer
181 views

CentOS equivalent of dpkg -s [closed]

I'm adapting a prepare script for CentOS that was previously written for Ubuntu. In the Ubuntu script, the command dpkg -s {some program} is called frequently. For example, one such command is dpkg ...
0
votes
1answer
25 views

fakeroot alternative for RPM

I studying dpkg and rpm package systems. I found in dpkg manuals recommendation to use fakeroot for correct build package as non-root user. But for RPM package i don't found alternative utility. I ...
0
votes
1answer
1k views

Variables in debian/rules makefile

I have to port one RPM (made for Fedora) to Ubuntu as a deb package. In the RPM .spec file I'm using several variables ($RPM_BUILD_ROOT, %{_libdir}, %{name}, %{version}) to create a symlink: ...