# $Id: dm-devel.spec,v 1.16 2000/06/01 14:22:08 elafo Exp $ %define version 3.2 %define build 1 Summary: NetWinder DM ARM Linux setup (development) Name: dm-devel Version: %{version} Release: %{build} Copyright: GPL Group: System Environment/Base ExclusiveArch: armv4l BuildRoot: /var/tmp/dm-devel-root %description NetWinder DM ARM Linux requires configuration after RPMS are installed, since we don't use a standard Red Hat installation program (which would do these changes for us). %changelog * Fri May 12 2000 Eric LaForest - Added line to nuke /etc/securetty to allow root login on ttyS1...THIS IS TEMPORARY AND MUST NOT SHIP AS SUCH!!! * Thu May 11 2000 Eric LaForest - Updated to 3.2-1 and removed readelf (now in binutils) * Wed Apr 14 1999 Andrew E. Mileski - merged netwinder-release and *.kludges into this %install # # Clean up, just in case # rm -rf %{buildroot} %post # # /etc/.pwd.lock will not go away :( # rm -rf /etc/.pwd.lock # # egcs kludge # if [ -e /usr/bin/gcc ] ; then cd /usr/bin ln -s gcc egcs fi # # strip kludge # if [ -e /usr/bin/strip ] ; then mv -f /usr/bin/strip /usr/bin/strip.real cat > /usr/bin/strip <<-'EOF' #! /bin/sh /usr/bin/strip.real $* exit 0 EOF chmod 755 /usr/bin/strip fi # # Disable MySQL at boot (not configured yet) # if [ -e /etc/rc.d/init.d/mysql ] ; then chkconfig mysql off fi # # xdm kludge (our X is old - it is started from inittab) # if [ -e /etc/rc.d/init.d/xdm ] ; then chkconfig --del xdm && rm -f /etc/rc.d/init.d/xdm fi # # *Temporary* kludge to allow root login on ttyS1 # rm -f /etc/securetty %clean rm -rf %{buildroot} %files