diff options
author | Jarkko Sakkinen <jarkko.sakkinen@intel.com> | 2012-05-08 14:22:44 -0400 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2012-05-08 18:03:35 -0400 |
commit | f2604c141a00c00b92b7fd2f9d2455517fdd6c15 (patch) | |
tree | 47638b1a561b5c5ff4ff8fd24e239252fc02419e /arch/x86/realmode | |
parent | f37240f16bec91f15ce564515f70a6ca9715ce96 (diff) |
x86, realmode: move relocs from scripts/ to arch/x86/tools
Moved relocs tool from scripts/ to arch/x86/tools because
it is architecture specific script. Added new target archscripts
that can be used to build scripts needed building an architecture.
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@intel.com>
Link: http://lkml.kernel.org/r/1336501366-28617-22-git-send-email-jarkko.sakkinen@intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'arch/x86/realmode')
-rw-r--r-- | arch/x86/realmode/rm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/realmode/rm/Makefile b/arch/x86/realmode/rm/Makefile index fc8854b09dfa..de40bc44b92f 100644 --- a/arch/x86/realmode/rm/Makefile +++ b/arch/x86/realmode/rm/Makefile | |||
@@ -52,7 +52,7 @@ $(obj)/realmode.bin: $(obj)/realmode.elf | |||
52 | $(call if_changed,objcopy) | 52 | $(call if_changed,objcopy) |
53 | 53 | ||
54 | quiet_cmd_relocs = RELOCS $@ | 54 | quiet_cmd_relocs = RELOCS $@ |
55 | cmd_relocs = scripts/x86-relocs --realmode $< > $@ | 55 | cmd_relocs = arch/x86/tools/relocs --realmode $< > $@ |
56 | $(obj)/realmode.relocs: $(obj)/realmode.elf FORCE | 56 | $(obj)/realmode.relocs: $(obj)/realmode.elf FORCE |
57 | $(call if_changed,relocs) | 57 | $(call if_changed,relocs) |
58 | 58 | ||