]> git.pld-linux.org Git - packages/fakeif.git/commitdiff
- new master
authorElan Ruusamäe <glen@pld-linux.org>
Wed, 9 Nov 2011 13:14:03 +0000 (13:14 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fakeif.spec -> 1.1

fakeif.spec [new file with mode: 0644]

diff --git a/fakeif.spec b/fakeif.spec
new file mode 100644 (file)
index 0000000..7393237
--- /dev/null
@@ -0,0 +1,44 @@
+Summary:       Set the value reported for a network card MAC address
+Name:          fakeif
+Version:       0.1
+Release:       0.1
+License:       ?
+Group:         Applications
+Source0:       http://www.chiark.greenend.org.uk/~peterb/linux/fakeif/%{name}-%{version}.tar.bz2
+# Source0-md5: 1ff69e4d383a9473ce94c50b16701001
+URL:           http://www.chiark.greenend.org.uk/~peterb/linux/fakeif/
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Set the value reported for a network card MAC address.
+
+This program demonstrates the use of LD_PRELOAD to override the value
+returned by the library call. The library call in question is ioctl.
+When called with cmd set to SIOCGIFHWADDR, we override the value
+returned by the system call with the value from an environment
+variable.
+
+To use the program, first set the environment variable
+HWADDR_interface to the MAC address you would like to be returned. For
+example, to set eth0 to 11:22:33:44:55:66, do
+
+HWADDR_eth0=11:22:33:44:55:66 export HWADDR_eth0 Then set LD_PRELOAD
+to the absolute path of fakeif.so and call your test program.
+
+%prep
+%setup -q
+
+%build
+%{__cc} %{rpmcflags} %{rpmcppflags} -s -shared -o libfakeif.so %{rpmldflags} fakeif.c
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_libdir}
+install -p libfakeif.so $RPM_BUILD_ROOT%{_libdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libfakeif.so
This page took 0.090538 seconds and 4 git commands to generate.