/usr/lib/portage/bin/ebuild.sh: line 254: [: too many arguments pam ppc ipv6 [ ok ]>>> Source unpacked. --------------------------- ACCESS VIOLATION SUMMARY --------------------------- LOG FILE = "/tmp/sandbox-x11-base_-_xorg-x11-6.7.0-r3-13486.log" unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check unlink: /usr/src/linux-2.6.9/.tmp_gas_check open_wr: /usr/src/linux-2.6.9/.tmp_gas_check -------------------------------------------------------------------------------- Reproducible: Always Steps to Reproduce: 1.emerge xorg-x11 (with xorg-x11-6.7.0-r2 installed) 2.wait.. 3. Actual Results: emerge fails with a access violation Expected Results: proceed with the emerge without problems newton root # emerge info Portage 2.0.51-r3 (default-ppc-2004.2, gcc-3.4.1, glibc-2.3.3.20040420-r2, 2.6.7-hardened-r10 ppc) ================================================================= System uname: 2.6.7-hardened-r10 ppc 750FX Gentoo Base System version 1.4.16 Autoconf: sys-devel/autoconf-2.59-r5 Automake: sys-devel/automake-1.8.5-r1 Binutils: sys-devel/binutils-2.15.90.0.3-r3 Headers: sys-kernel/linux-headers-2.4.22,sys-kernel/linux-headers-2.4.19-r1 Libtools: sys-devel/libtool-1.5.2-r7 ACCEPT_KEYWORDS="ppc" AUTOCLEAN="yes" CFLAGS="-O2 -pipe -mcpu=750 -mpowerpc-gfxopt" CHOST="powerpc-unknown-linux-gnu" COMPILER="" CONFIG_PROTECT="/etc /usr/X11R6/lib/X11/xkb /usr/kde/2/share/config /usr/kde/3.1/share/config /usr/kde/3/share/config /usr/share/config /var/qmail/control" CONFIG_PROTECT_MASK="/etc/gconf /etc/terminfo /etc/env.d" CXXFLAGS="-O2 -pipe -mcpu=750 -mpowerpc-gfxopt" DISTDIR="/usr/portage/distfiles" FEATURES="autoaddcvs ccache distcc distlocks fixpackages sandbox" GENTOO_MIRRORS="ftp://ftp.rnl.ist.utl.pt/gentoo http://gentoo.oregonstate.edu/ http://www.ibiblio.org/pub/Linux/distributions/gentoo" MAKEOPTS="-j2" PKGDIR="/usr/portage/packages" PORTAGE_TMPDIR="/var/tmp" PORTDIR="/usr/portage" PORTDIR_OVERLAY="" SYNC="rsync://ftp.rnl.ist.utl.pt/gentoo-portage" USE="X acl alsa arts berkdb cdr chroot crypt divx4linux dvd esd f77 gdbm gif gnome gnome-libs gpm gtk gtk2 imlib ipv6 java jpeg junit motif moznocompose moznoirc mpeg ncurses nls nptl oggvorbis opengl pam perl pic png ppc python quicktime radeon readline samba sdl slang ssl tcltk tcpd theora threads tiff truetype xft xine xinerama xmms xprint xv xvid zlib video_cards_radeon"
*** Bug 75115 has been marked as a duplicate of this bug. ***
Also see bug #74655, same problem w/ the orinoco drivers.
Applying the reverse of this diff: http://www.gentoo.org/cgi-bin/viewcvs.cgi/x11-base/xorg-x11/xorg-x11-6.8.0-r4.ebuild?r1=1.26&r2=1.27 solves the problem for me (same for xorg-x11-6.8.1*). Looks like something in those kernel eclasses, will need to look into it further.
Trouble in linux-info land, John.
Yeah, it's this bit from /usr/src/linux/arch/ppc/Makefile that gets sucked in and run by getfilevar(): # Use the file '.tmp_gas_check' for binutils tests, as gas won't output # to stdout and these checks are run even on install targets. TOUT := .tmp_gas_check # Ensure this is binutils 2.12.1 (or 2.12.90.0.7) or later for altivec # instructions. AS_ALTIVEC := $(shell echo dssall | $(AS) -many -o $(TOUT) >/dev/null 2>&1 ; echo $$?) # gcc-3.4 and binutils-2.14 are a fatal combination. GCC_VERSION := $(call cc-version) BAD_GCC_AS := $(shell echo mftb 5 | $(AS) -mppc -many -o $(TOUT) >/dev/null 2>&1 && echo 0 || echo 1)
Also, the ebuild patch should be: --- /home/portage-tree/current/x11-base/xorg-x11/xorg-x11-6.7.0-r3.ebuild 2004-12-06 23:23:15.000000000 -0500 +++ xorg-x11-6.7.0-r3.ebuild 2004-12-21 10:02:45.454392744 -0500 @@ -251,7 +251,7 @@ fi if ( [ -e "${ROOT}/usr/src/linux" ] && \ - [ ! `kernel_is "2" "2"` ] ) || \ + ! kernel_is "2" "2" ) || \ [ "`uname -r | cut -d. -f1,2`" != "2.2" ] then echo "#define HasLinuxInput YES" >> config/cf/host.def
Fixed the problem in comment #6, along with a few related changes.
does someone have a box I can mess with this on? I'm lacking a PPC box. if anyone wants to pass on a pegasos box feel free! :)
hmm, ok this is a tricky one. since we include Makfile, which includes the above as you stated to generate the versioning information (most reliable method) we cant neccessarily get around this. is there a way in make to negate an include? since the arch includes are never going to be needed it makes sense.
Just to clarify.. We must use make, as we might need to get arch default values from the arch default configs, not just from .config, yes?
we also need to be able to evaluate makefile vars. think something like: VARIABLE=$(objtree)/$(arch) or anything of that sort. KBUILD_OUTPUT is a good example. KBUILD_OUTPUT=/var/tmp/linux-output/$(VERSION)....
I have this problem while installing xorg-x11-6.8.1.901 and xorg-x11-6.8.0-rx with kernel 2.6.9-gentoo-r9. None of the solutions works for me, but after emerging the new kernel 2.6.10-gentoo-r2, xorg-x11 compiles without problems.
One quick fix for xorg-x11-6.8.1.901 is to manually modify /usr/src/linux/arch/ppc/Makefile with the fix which is present in /usr/portage/eclass/kernel-2.eclass ie replace the line "TOUT := .tmp_gas_check" with "TOUT := $(T).tmp_gas_check" This will stop the sandbox violation.
this has now been fixed in linux-info.eclass temporarily until we can look at addressing the real issue in the sources. fixed in cvs.
The bug has been referenced in the following commit(s): https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31c7e60f5cf2c3bc8251f2f13aa899c836f4b40b commit 31c7e60f5cf2c3bc8251f2f13aa899c836f4b40b Author: Ulrich Müller <ulm@gentoo.org> AuthorDate: 2024-06-22 17:06:32 +0000 Commit: Ulrich Müller <ulm@gentoo.org> CommitDate: 2024-07-08 09:42:06 +0000 linux-info.eclass: Drop temporary fix for powerpc Apparently there is no reference to a .tmp_gas_check file or to a TOUT variable in Linux sources any more. Bug: https://bugs.gentoo.org/75034#c14 Signed-off-by: Ulrich Müller <ulm@gentoo.org> eclass/linux-info.eclass | 6 ------ 1 file changed, 6 deletions(-)