summaryrefslogtreecommitdiff
path: root/arch/ia64/scripts
AgeCommit message (Collapse)Author
2010-02-02scripts: change scripts to use system python instead of envDon Zickus
Just a small change to a couple of scripts to go from #!/usr/bin/env python to #!/usr/bin/python This shouldn't effect anyone, unless they don't install python there. In preparation for python3, Fedora is doing a big push to change the scripts to use the system python. This allows developers to put the python3 in their path without fear of breaking existing scripts. Now I am pretty sure anyone using python3 for testing purposes will probably not run any of the scripts I changed, but Fedora has this automated tool that checks for this stuff so I thought I would try to push it upstream. Signed-off-by: Don Zickus <dzickus@redhat.com> Acked-by: WANG Cong <xiyou.wangcong@gmail.com> Acked-by: Jarod Wilson <jarod@redhat.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
2009-03-26ia64/pv_ops/pvchecker: support mov = ar.itc paravirtualizationIsaku Yamahata
add suport for mov = ar.itc to pvchecker. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Tony Luck <tony.luck@intel.com>
2008-10-17ia64/pv_ops: paravirtualized instruction checker.Isaku Yamahata
This patch implements a checker to detect instructions which should be paravirtualized instead of direct writing raw instruction. This patch does rough check so that it doesn't fully cover all cases, but it can detects most cases of paravirtualization breakage of hand written assembly codes. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Tony Luck <tony.luck@intel.com>
2007-12-07[IA64] don't assume that unwcheck.py is executableAndrew Morton
Don't assume that this file has execute permissions. For example, patch(1) loses that information. Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Tony Luck <tony.luck@intel.com>
2007-10-29[IA64] check-segrel.lds vs --build-idRoland McGrath
Some versions of ld with --build-id support will crash when using the flag with a linker script that discards notes. This bites ia64's check-segrel.lds. The bug is easy to avoid. Signed-off-by: Roland McGrath <roland@redhat.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
2004-05-06ia64: Fix spurious GAS dependency-violation (dv) warnings by takingDavid Mosberger
advantage of two new GAS directives (.serialize.{data,instruction}).
2004-02-12ia64: Update toolchain-flags with a check for working .align inside aDavid Mosberger
now that there is a fixed GAS.
2004-01-15ia64: If GAS can handle .align inside code, enable it via TEXT_ALIGN().David Mosberger
2004-01-15ia64: Replace unwcheck shell-script with a Python script which worksDavid Mosberger
correctly even on 32-bit hosts. As an added bonus, it's faster, too. Run "unwcheck" by default, but for now, don't let unwcheck errors cause the kernel build to fail.
2003-09-05ia64: Finnish adding ECC support. Based on patch by Suresh Siddah.David Mosberger
2003-07-25ia64: Fix check for "model(small)" attribute.David Mosberger
2003-07-16ia64: If the compiler supports it, use attribute (model (small)) toDavid Mosberger
tell the compiler that per-CPU variables can be addressed with "addl". On the simulator kernel, this saves about 2776 bytes in the kernel image. On a zx1 kernel, it saves about 5593 bytes. As per-CPU variables are used more, these savings will increase, of course.
2003-06-18ia64: Simplify the script to use only $CC and $OBJDUMP. Besides being simpler,David Mosberger
this also ensure we really do test the linker which will be used when building the gate DSO.
2003-06-13ia64: Still more gate DSO tuning. Turns out a linker bug preventedDavid Mosberger
us from building the gate DSO in a way that makes it fit in <= 1 page. If a fixed linker is available, we do it in this space-saving way now. Otherwise, we'll do it the old way (the gate DSO will then take up about 18KB instead of just ~3KB). Thanks to Roland McGrath for making this all work.
2003-03-23[PATCH] ia64: Cross-compile fixWolfgang Mauerer
the attached patch (against bk-current) fixes a cross compilation problem by using the target specific objdump tool instead of the host specific one.
2003-01-24ia64: Check for acceptable version of gas before trying to buildDavid Mosberger
the kernel. Old gas versions will result in buggy kernels that will bugcheck all over the place (usually mount() is the first one to fail).
2003-01-17ia64: Add unwcheck.sh script contributed by Harish Patil. It checksDavid Mosberger
the unwind info for consistency (well, just the obvious stuff, but it's a start). Fix the couple of bugs that this script uncovered (and work around one false positive).