forked from Tasssadar/kexec-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only include needed files in distribution tarball
With the recent build changes a number of unneded files crept into tarballs, including .o and .d files. This patch is farily verbose, but hopefully in the long run this system will be obvious enough to be maintainable. Signed-off-by: Simon Horman <[email protected]>
- Loading branch information
Showing
27 changed files
with
245 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
dist += doc/Makefile \ | ||
doc/linux-i386-boot.txt \ | ||
doc/linux-i386-zero-page.txt \ | ||
doc/multiboot.html \ | ||
doc/nbi-spec.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
dist += include/Makefile \ | ||
include/config.h \ | ||
include/x86/x86-linux.h \ | ||
include/x86/mb_info.h \ | ||
include/x86/mb_header.h \ | ||
include/elf.h \ | ||
include/boot/linuxbios_tables.h \ | ||
include/boot/beoboot.h \ | ||
include/boot/elf_boot.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
alpha_KEXEC_SRCS= | ||
dist += kexec/arch/alpha/Makefile kexec/arch/alpha/include/arch/options.h | ||
$(alpha_KEXEC_SRCS) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# | ||
# kexec arm (linux booting linux) | ||
# | ||
KEXEC_SRCS+= kexec/arch/arm/kexec-elf-rel-arm.c | ||
KEXEC_SRCS+= kexec/arch/arm/kexec-zImage-arm.c | ||
KEXEC_SRCS+= kexec/arch/arm/kexec-arm.c | ||
arm_KEXEC_SRCS= kexec/arch/arm/kexec-elf-rel-arm.c | ||
arm_KEXEC_SRCS+= kexec/arch/arm/kexec-zImage-arm.c | ||
arm_KEXEC_SRCS+= kexec/arch/arm/kexec-arm.c | ||
|
||
dist += kexec/arch/arm/Makefile $(arm_KEXEC_SRCS) \ | ||
kexec/arch/arm/kexec-arm.h \ | ||
kexec/arch/arm/include/arch/options.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
# | ||
# kexec i386 (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/i386/kexec-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-elf-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-elf-rel-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-bzImage.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-multiboot-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-beoboot-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-nbi.c | ||
KEXEC_SRCS += kexec/arch/i386/x86-linux-setup.c | ||
KEXEC_SRCS += kexec/arch/i386/crashdump-x86.c | ||
i386_KEXEC_SRCS = kexec/arch/i386/kexec-x86.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/kexec-elf-x86.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/kexec-elf-rel-x86.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/kexec-bzImage.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/kexec-multiboot-x86.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/kexec-beoboot-x86.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/kexec-nbi.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/x86-linux-setup.c | ||
i386_KEXEC_SRCS += kexec/arch/i386/crashdump-x86.c | ||
|
||
dist += kexec/arch/i386/Makefile $(i386_KEXEC_SRCS) \ | ||
kexec/arch/i386/kexec-x86.h kexec/arch/i386/crashdump-x86.h \ | ||
kexec/arch/i386/x86-linux-setup.h \ | ||
kexec/arch/i386/include/arch/options.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# | ||
# kexec ia64 (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/ia64/kexec-iomem.c | ||
KEXEC_SRCS += kexec/arch/ia64/kexec-ia64.c | ||
KEXEC_SRCS += kexec/arch/ia64/kexec-elf-ia64.c | ||
KEXEC_SRCS += kexec/arch/ia64/kexec-elf-rel-ia64.c | ||
KEXEC_SRCS += kexec/arch/ia64/crashdump-ia64.c | ||
ia64_KEXEC_SRCS = kexec/arch/ia64/kexec-iomem.c | ||
ia64_KEXEC_SRCS += kexec/arch/ia64/kexec-ia64.c | ||
ia64_KEXEC_SRCS += kexec/arch/ia64/kexec-elf-ia64.c | ||
ia64_KEXEC_SRCS += kexec/arch/ia64/kexec-elf-rel-ia64.c | ||
ia64_KEXEC_SRCS += kexec/arch/ia64/crashdump-ia64.c | ||
|
||
dist += kexec/arch/ia64/Makefile $(ia64_KEXEC_SRCS) \ | ||
kexec/arch/ia64/kexec-ia64.h kexec/arch/ia64/crashdump-ia64.h \ | ||
kexec/arch/ia64/include/arch/options.h | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# | ||
# kexec ppc (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/ppc/kexec-ppc.c | ||
KEXEC_SRCS += kexec/arch/ppc/kexec-elf-ppc.c | ||
KEXEC_SRCS += kexec/arch/ppc/kexec-elf-rel-ppc.c | ||
KEXEC_SRCS += kexec/arch/ppc/kexec-dol-ppc.c | ||
KEXEC_SRCS += kexec/arch/ppc/ppc-setup-simple.S | ||
KEXEC_SRCS += kexec/arch/ppc/ppc-setup-dol.S | ||
ppc_KEXEC_SRCS = kexec/arch/ppc/kexec-ppc.c | ||
ppc_KEXEC_SRCS += kexec/arch/ppc/kexec-elf-ppc.c | ||
ppc_KEXEC_SRCS += kexec/arch/ppc/kexec-elf-rel-ppc.c | ||
ppc_KEXEC_SRCS += kexec/arch/ppc/kexec-dol-ppc.c | ||
ppc_KEXEC_SRCS += kexec/arch/ppc/ppc-setup-simple.S | ||
ppc_KEXEC_SRCS += kexec/arch/ppc/ppc-setup-dol.S | ||
|
||
dist += kexec/arch/ppc/Makefile $(ppc_KEXEC_SRCS) \ | ||
kexec/arch/ppc/kexec-ppc.h kexec/arch/ppc/ppc_asm.h \ | ||
kexec/arch/ppc/include/arch/options.h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
# | ||
# kexec ppc64 (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/ppc64/kexec-elf-rel-ppc64.c | ||
KEXEC_SRCS += kexec/arch/ppc64/kexec-zImage-ppc64.c | ||
KEXEC_SRCS += kexec/arch/ppc64/fs2dt.c | ||
KEXEC_SRCS += kexec/arch/ppc64/kexec-elf-ppc64.c | ||
KEXEC_SRCS += kexec/arch/ppc64/kexec-ppc64.c | ||
KEXEC_SRCS += kexec/arch/ppc64/crashdump-ppc64.c | ||
ppc64_KEXEC_SRCS = kexec/arch/ppc64/kexec-elf-rel-ppc64.c | ||
ppc64_KEXEC_SRCS += kexec/arch/ppc64/kexec-zImage-ppc64.c | ||
ppc64_KEXEC_SRCS += kexec/arch/ppc64/fs2dt.c | ||
ppc64_KEXEC_SRCS += kexec/arch/ppc64/kexec-elf-ppc64.c | ||
ppc64_KEXEC_SRCS += kexec/arch/ppc64/kexec-ppc64.c | ||
ppc64_KEXEC_SRCS += kexec/arch/ppc64/crashdump-ppc64.c | ||
|
||
dist += kexec/arch/ppc64/Makefile $(ppc64_KEXEC_SRCS) \ | ||
kexec/arch/ppc64/kexec-ppc64.h kexec/arch/ppc64/crashdump-ppc64.h \ | ||
kexec/arch/ppc64/include/arch/options.h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# | ||
# kexec s390 (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/s390/kexec-s390.c | ||
KEXEC_SRCS += kexec/arch/s390/kexec-image.c | ||
KEXEC_SRCS += kexec/arch/s390/kexec-elf-rel-s390.c | ||
s390_KEXEC_SRCS = kexec/arch/s390/kexec-s390.c | ||
s390_KEXEC_SRCS += kexec/arch/s390/kexec-image.c | ||
s390_KEXEC_SRCS += kexec/arch/s390/kexec-elf-rel-s390.c | ||
|
||
dist += kexec/arch/s390/Makefile $(s390_KEXEC_SRCS) \ | ||
kexec/arch/s390/kexec-s390.h \ | ||
kexec/arch/s390/include/arch/options.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
# | ||
# kexec sh (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/sh/kexec-sh.c | ||
KEXEC_SRCS += kexec/arch/sh/kexec-zImage-sh.c | ||
KEXEC_SRCS += kexec/arch/sh/kexec-netbsd-sh.c | ||
KEXEC_SRCS += kexec/arch/sh/kexec-elf-rel-sh.c | ||
KEXEC_SRCS += kexec/arch/sh/netbsd_booter.S | ||
sh_KEXEC_SRCS += kexec/arch/sh/kexec-sh.c | ||
sh_KEXEC_SRCS += kexec/arch/sh/kexec-zImage-sh.c | ||
sh_KEXEC_SRCS += kexec/arch/sh/kexec-netbsd-sh.c | ||
sh_KEXEC_SRCS += kexec/arch/sh/kexec-elf-rel-sh.c | ||
sh_KEXEC_SRCS += kexec/arch/sh/netbsd_booter.S | ||
|
||
dist += kexec/arch/sh/Makefile $(sh_KEXEC_SRCS) \ | ||
kexec/arch/sh/kexec-sh.h \ | ||
kexec/arch/sh/include/arch/options.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
# | ||
# kexec x86_64 (linux booting linux) | ||
# | ||
KEXEC_SRCS += kexec/arch/i386/kexec-elf-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-bzImage.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-multiboot-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-beoboot-x86.c | ||
KEXEC_SRCS += kexec/arch/i386/kexec-nbi.c | ||
KEXEC_SRCS += kexec/arch/i386/x86-linux-setup.c | ||
KEXEC_SRCS += kexec/arch/x86_64/crashdump-x86_64.c | ||
KEXEC_SRCS += kexec/arch/x86_64/kexec-x86_64.c | ||
KEXEC_SRCS += kexec/arch/x86_64/kexec-elf-x86_64.c | ||
KEXEC_SRCS += kexec/arch/x86_64/kexec-elf-rel-x86_64.c | ||
x86_64_KEXEC_SRCS = kexec/arch/i386/kexec-elf-x86.c | ||
x86_64_KEXEC_SRCS += kexec/arch/i386/kexec-bzImage.c | ||
x86_64_KEXEC_SRCS += kexec/arch/i386/kexec-multiboot-x86.c | ||
x86_64_KEXEC_SRCS += kexec/arch/i386/kexec-beoboot-x86.c | ||
x86_64_KEXEC_SRCS += kexec/arch/i386/kexec-nbi.c | ||
x86_64_KEXEC_SRCS += kexec/arch/i386/x86-linux-setup.c | ||
x86_64_KEXEC_SRCS += kexec/arch/x86_64/crashdump-x86_64.c | ||
x86_64_KEXEC_SRCS += kexec/arch/x86_64/kexec-x86_64.c | ||
x86_64_KEXEC_SRCS += kexec/arch/x86_64/kexec-elf-x86_64.c | ||
x86_64_KEXEC_SRCS += kexec/arch/x86_64/kexec-elf-rel-x86_64.c | ||
|
||
dist += kexec/arch/x86_64/Makefile $(x86_64_KEXEC_SRCS) \ | ||
kexec/arch/x86_64/kexec-x86_64.h kexec/arch/x86_64/crashdump-x86_64.h \ | ||
kexec/arch/x86_64/include/arch/options.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.