Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/examples/busybox.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 1  Line 1 
1  %define name busybox  Summary: Statically linked binary providing simplified versions of system commands
2  %define epoch   0  Name: busybox
3  %define version 0.61.pre  Version: 1.15.1
4  %define release %(date -I | sed -e 's/-/_/g')  Release: 1%{?dist}
5  %define serial  1  Epoch: 1
6    License: GPLv2
7  Name: %{name}  Group: System Environment/Shells
8  #Epoch:   %{epoch}  Source: http://www.busybox.net/downloads/%{name}-%{version}.tar.bz2
9  Version: %{version}  Source1: busybox-static.config
10  Release: %{release}  Source2: busybox-petitboot.config
11  Serial: %{serial}  Source3: http://www.uclibc.org/downloads/uClibc-0.9.30.1.tar.bz2
12  Copyright: GPL  Source4: uClibc.config
13  Group: System/Utilities  Patch16: busybox-1.10.1-hwclock.patch
14  Summary: BusyBox is a tiny suite of Unix utilities in a multi-call binary.  # patch to avoid conflicts with getline() from stdio.h, already present in upstream VCS
15  URL: http://busybox.net/  Patch22: uClibc-0.9.30.1-getline.patch
16  Source: ftp://busybox.net/busybox/%{name}-%{version}.tar.gz  Obsoletes: busybox-anaconda
17  Buildroot: /var/tmp/%{name}-%{version}  URL: http://www.busybox.net
18  Packager : Erik Andersen <andersen@codepoet.org>  BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
19    BuildRequires: libselinux-devel >= 1.27.7-2
20  %Description  BuildRequires: libsepol-devel
21  BusyBox combines tiny versions of many common UNIX utilities into a single  BuildRequires: libselinux-static
22  small executable. It provides minimalist replacements for most of the utilities  BuildRequires: libsepol-static
23  you usually find in fileutils, shellutils, findutils, textutils, grep, gzip,  BuildRequires: glibc-static
24  tar, etc.  BusyBox provides a fairly complete POSIX environment for any small  
25  or emdedded system.  The utilities in BusyBox generally have fewer options then  %define debug_package %{nil}
26  their full featured GNU cousins; however, the options that are provided behave  
27  very much like their GNU counterparts.  %package petitboot
28    Group: System Environment/Shells
29    Summary: Version of busybox configured for use with petitboot
30    
31    %description
32    Busybox is a single binary which includes versions of a large number
33    of system commands, including a shell.  This package can be very
34    useful for recovering from certain types of system failures,
35    particularly those involving broken shared libraries.
36    
37    %description petitboot
38    Busybox is a single binary which includes versions of a large number
39    of system commands, including a shell.  The version contained in this
40    package is a minimal configuration intended for use with the Petitboot
41    bootloader used on PlayStation 3. The busybox package provides a binary
42    better suited to normal use.
43    
44    %prep
45    %setup -q -a3
46    %patch16 -b .ia64 -p1
47    cat %{SOURCE4} >uClibc-0.9.30.1/.config1
48    %patch22 -b .getline -p1
49    
50    %build
51    # create static busybox - the executable is kept as busybox-static
52    # We use uclibc instead of system glibc, uclibc is several times
53    # smaller, this is important for static build.
54    # Build uclibc first.
55    cd uClibc-0.9.30.1
56    # fixme:
57    mkdir kernel-include
58    cp -a /usr/include/asm kernel-include
59    cp -a /usr/include/asm-generic kernel-include
60    cp -a /usr/include/linux kernel-include
61    # uclibc can't be built on ppc64,s390,ia64, we set $arch to "" in this case
62    arch=`uname -m | sed -e 's/i.86/i386/' -e 's/ppc/powerpc/' -e 's/ppc64//' -e 's/powerpc64//' -e 's/ia64//' -e 's/s390.*//'`
63    echo "TARGET_$arch=y" >.config
64    echo "TARGET_ARCH=\"$arch\"" >>.config
65    cat .config1 >>.config
66    if test "$arch"; then yes "" | make oldconfig; fi
67    if test "$arch"; then cat .config; fi
68    if test "$arch"; then make V=1; fi
69    if test "$arch"; then make install; fi
70    if test "$arch"; then make install_kernel_headers; fi
71    cd ..
72    # we are back in busybox-NN.MM dir now
73    cp %{SOURCE1} .config
74    # set all new options to defaults
75    yes "" | make oldconfig
76    # gcc needs to be convinced to use neither system headers, nor libs,
77    # nor startfiles (i.e. crtXXX.o files)
78    if test "$arch"; then \
79        mv .config .config1 && \
80        grep -v ^CONFIG_SELINUX .config1 >.config && \
81        yes "" | make oldconfig && \
82        cat .config && \
83        make V=1 \
84            EXTRA_CFLAGS="-isystem uClibc-0.9.30.1/installed/include" \
85            CFLAGS_busybox="-static -nostartfiles -LuClibc-0.9.30.1/installed/lib uClibc-0.9.30.1/installed/lib/crt1.o uClibc-0.9.30.1/installed/lib/crti.o uClibc-0.9.30.1/installed/lib/crtn.o"; \
86    else \
87        cat .config && \
88        make V=1 CC="gcc $RPM_OPT_FLAGS"; \
89    fi
90    cp busybox busybox.static
91    
92    # create busybox optimized for petitboot
93    make clean
94    # copy new configuration file
95    cp %{SOURCE2} .config
96    # set all new options to defaults
97    yes "" | make oldconfig
98    make V=1 CC="%__cc $RPM_OPT_FLAGS"
99    cp busybox busybox.petitboot
100    
101  %Prep  %install
 %setup -q -n %{name}-%{version}  
   
 %Build  
 make  
   
 %Install  
102  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
103  make CONFIG_PREFIX=$RPM_BUILD_ROOT install  mkdir -p $RPM_BUILD_ROOT/sbin
104    install -m 755 busybox.static $RPM_BUILD_ROOT/sbin/busybox
105    install -m 755 busybox.petitboot $RPM_BUILD_ROOT/sbin/busybox.petitboot
106    
107  %Clean  %clean
108  rm -rf $RPM_BUILD_ROOT  rm -rf $RPM_BUILD_ROOT
109    
110  %Files  %files
111  %defattr(-,root,root)  %defattr(-,root,root,-)
112  /  %doc LICENSE docs/busybox.net/*.html
113    /sbin/busybox
114    
115    %files petitboot
116    %defattr(-,root,root,-)
117    %doc LICENSE
118    /sbin/busybox.petitboot
119    
120    %changelog

Legend:
Removed from v.983  
changed lines
  Added in v.984