diff options
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/mkdevnodes.changes | 6 | ||||
-rw-r--r-- | packaging/mkdevnodes.spec | 40 |
2 files changed, 46 insertions, 0 deletions
diff --git a/packaging/mkdevnodes.changes b/packaging/mkdevnodes.changes new file mode 100644 index 0000000..cd7353d --- /dev/null +++ b/packaging/mkdevnodes.changes @@ -0,0 +1,6 @@ +* Thu Oct 21 2010 Auke Kok <auke-jan.h.kok@intel.com> - 0.2 +- Fix compile issue on ARM (don't force arch). + +* Thu Oct 21 2010 Auke Kok <auke-jan.h.kok@intel.com> - 0.1 +- Splitting this out of the udev package, posted upstream repo. +- Initial automated packaging diff --git a/packaging/mkdevnodes.spec b/packaging/mkdevnodes.spec new file mode 100644 index 0000000..206ff09 --- /dev/null +++ b/packaging/mkdevnodes.spec @@ -0,0 +1,40 @@ + +Name: mkdevnodes +Summary: Fast MAKEDEV replacement +Version: 0.2 +Release: 1 +Group: Applications/System +License: GPLv2 +Source0: mkdevnodes-%{version}.tar.gz + + +%description +A replacement for MAKEDEV. Instead of parsing hard-coded text files, mkdevnodes uses the information provided in sysfs to generate device nodes with mknod() as needed, as well as a few base device nodes that always need to be present. Mkdevnodes is thus extremely fast, as it doesn not need to read and/or parse text files from the root filesystem. + + + + +%prep +%setup -q -n %{name}-%{version} + + +%build + + +make %{?jobs:-j%jobs} + +%install +rm -rf %{buildroot} +%make_install + + + + + + + +%files +%defattr(-,root,root,-) +/sbin/mkdevnodes + + |