Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 151923 Details for
Bug 235610
RFE: minimal busybox subpackage for use with petitboot bootloader.
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
CVS repository patch.
busybox-build-patch (text/plain), 4.87 KB, created by
David Woodhouse
on 2007-04-07 23:24:45 UTC
(
hide
)
Description:
CVS repository patch.
Filename:
MIME Type:
Creator:
David Woodhouse
Created:
2007-04-07 23:24:45 UTC
Size:
4.87 KB
patch
obsolete
>? busybox-1.2.2 >? busybox-build-patch >? busybox-petitboot.config >Index: busybox-1.2.0-selinux.patch >=================================================================== >RCS file: /cvs/dist/rpms/busybox/devel/busybox-1.2.0-selinux.patch,v >retrieving revision 1.1 >diff -u -r1.1 busybox-1.2.0-selinux.patch >--- busybox-1.2.0-selinux.patch 4 Jul 2006 11:10:26 -0000 1.1 >+++ busybox-1.2.0-selinux.patch 7 Apr 2007 23:22:19 -0000 >@@ -199,17 +199,6 @@ > source shell/Config.in > source sysklogd/Config.in > +source selinux/Config.in >---- busybox-1.2.0/Rules.mak.selinux 2006-07-01 00:42:13.000000000 +0200 >-+++ busybox-1.2.0/Rules.mak 2006-07-03 13:22:00.000000000 +0200 >-@@ -397,7 +397,7 @@ >- -o $@ $(LD_START_GROUP) \ >- $(APPLETS_DEFINE) $(APPLET_SRC) \ >- $(BUSYBOX_DEFINE) $(BUSYBOX_SRC) $(libraries-y) \ >-- $(LDBUSYBOX) $(LIBRARIES) \ >-+ $(LDBUSYBOX) $(LIBRARIES) -lsepol\ >- $(LD_END_GROUP) >- cmd_link.so = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) \ >- $(LIB_CFLAGS) $(CFLAGS_COMBINE) $(LIB_LDFLAGS) \ > --- busybox-1.2.0/Makefile.selinux 2006-07-01 00:42:13.000000000 +0200 > +++ busybox-1.2.0/Makefile 2006-07-03 13:22:00.000000000 +0200 > @@ -33,7 +33,7 @@ >Index: busybox.spec >=================================================================== >RCS file: /cvs/dist/rpms/busybox/devel/busybox.spec,v >retrieving revision 1.57 >diff -u -r1.57 busybox.spec >--- busybox.spec 2 Apr 2007 10:39:08 -0000 1.57 >+++ busybox.spec 7 Apr 2007 23:22:19 -0000 >@@ -1,18 +1,18 @@ > Summary: Statically linked binary providing simplified versions of system commands > Name: busybox > Version: 1.2.2 >-Release: 7%{?dist} >+Release: 8%{?dist} > Epoch: 1 > License: GPL > Group: System Environment/Shells > Source: http://www.busybox.net/downloads/%{name}-%{version}.tar.bz2 >+Source1: busybox-petitboot.config > Patch: busybox-1.2.0-static.patch > Patch1: busybox-1.2.0-anaconda.patch > Patch2: busybox-1.2.0-selinux.patch > Patch4: busybox-1.2.0-ppc64.patch > Patch5: busybox-1.2.0-page_size.patch > Patch7: busybox-1.2.2-id_ps.patch >-Patch8: busybox-1.2.0-gcc41.patch > Patch9: busybox-1.2.0-tar.patch > Patch10: busybox-1.2.2-ash.patch > Patch11: busybox-1.2.2-iptunnel.patch >@@ -28,6 +28,10 @@ > Group: System Environment/Shells > Summary: Version of busybox configured for use with anaconda > >+%package petitboot >+Group: System Environment/Shells >+Summary: Version of busybox configured for use with petitboot >+ > %description > Busybox is a single binary which includes versions of a large number > of system commands, including a shell. This package can be very >@@ -41,6 +45,13 @@ > anaconda. The busybox package provides a binary better suited to > normal use. > >+%description petitboot >+Busybox is a single binary which includes versions of a large number >+of system commands, including a shell. The version contained in this >+package is a minimal configuration intended for use with the Petitboot >+bootloader used on PlayStation 3. The busybox package provides a binary >+better suited to normal use. >+ > %prep > %setup -q > #SELINUX Patch >@@ -51,7 +62,6 @@ > %endif > %patch5 -b .ia64 -p1 > %patch7 -b .id_ps -p1 >-%patch8 -b .gcc111 -p1 > %patch9 -b .tar -p1 > %patch10 -b .ash -p1 > %patch11 -b .iptunnel -p1 >@@ -72,13 +82,21 @@ > > make defconfig > make CONFIG_DEBUG=y CC="gcc $RPM_OPT_FLAGS" >+cp busybox busybox.anaconda >+ >+make clean >+cp %{SOURCE1} .config >+yes "" | make oldconfig >+make CC="gcc $RPM_OPT_FLAGS -Os" >+cp busybox busybox.petitboot > > %install > rm -rf $RPM_BUILD_ROOT > mkdir -p $RPM_BUILD_ROOT/sbin > mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man1 > install -m 755 busybox-static $RPM_BUILD_ROOT/sbin/busybox >-install -m 755 busybox $RPM_BUILD_ROOT/sbin/busybox.anaconda >+install -m 755 busybox.anaconda $RPM_BUILD_ROOT/sbin/busybox.anaconda >+install -m 755 busybox.petitboot $RPM_BUILD_ROOT/sbin/busybox.petitboot > install -p docs/BusyBox.1 $RPM_BUILD_ROOT/%{_mandir}/man1/busybox.1 > chmod 644 $RPM_BUILD_ROOT/%{_mandir}/man1/busybox.1 > >@@ -96,7 +114,15 @@ > %defattr(-,root,root,-) > /sbin/busybox.anaconda > >+%files petitboot >+%doc LICENSE docs/BusyBox.html >+%defattr(-,root,root,-) >+/sbin/busybox.petitboot >+ > %changelog >+* Sat Apr 7 2007 David Woodhouse <dwmw2@redhat.com> - 1:1.2.2-8 >+- Add busybox-petitboot subpackage >+ > * Mon Apr 2 2007 Ivana Varekova <varekova@redhat.com> - 1:1.2.2-7 > - Resolves: 234769 > busybox ls does not work without a tty >--- busybox-1.2.0-gcc41.patch 2006-07-04 07:10:26.000000000 -0400 >+++ /dev/null 2007-04-07 02:24:00.388840737 -0400 >@@ -1,11 +0,0 @@ >---- busybox-1.2.0/Rules.mak.gcc41 2006-07-04 08:55:30.000000000 +0200 >-+++ busybox-1.2.0/Rules.mak 2006-07-04 08:57:28.000000000 +0200 >-@@ -397,7 +397,7 @@ >- -o $@ $(LD_START_GROUP) \ >- $(APPLETS_DEFINE) $(APPLET_SRC) \ >- $(BUSYBOX_DEFINE) $(BUSYBOX_SRC) $(libraries-y) \ >-- $(LDBUSYBOX) $(LIBRARIES) -lsepol\ >-+ $(LDBUSYBOX) $(LIBRARIES) -lsepol \ >- $(LD_END_GROUP) >- cmd_link.so = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) \ >- $(LIB_CFLAGS) $(CFLAGS_COMBINE) $(LIB_LDFLAGS) \
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 235610
:
151922
| 151923 |
152088