~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/powerpc/crypto/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/powerpc/crypto/Makefile (Architecture sparc64) and /arch/sparc/crypto/Makefile (Architecture sparc)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 #                                                   2 #
  3 # powerpc/crypto/Makefile                      << 
  4 #                                              << 
  5 # Arch-specific CryptoAPI modules.                  3 # Arch-specific CryptoAPI modules.
  6 #                                                   4 #
  7                                                     5 
  8 obj-$(CONFIG_CRYPTO_AES_PPC_SPE) += aes-ppc-sp !!   6 obj-$(CONFIG_CRYPTO_SHA1_SPARC64) += sha1-sparc64.o
  9 obj-$(CONFIG_CRYPTO_MD5_PPC) += md5-ppc.o      !!   7 obj-$(CONFIG_CRYPTO_SHA256_SPARC64) += sha256-sparc64.o
 10 obj-$(CONFIG_CRYPTO_SHA1_PPC) += sha1-powerpc. !!   8 obj-$(CONFIG_CRYPTO_SHA512_SPARC64) += sha512-sparc64.o
 11 obj-$(CONFIG_CRYPTO_SHA1_PPC_SPE) += sha1-ppc- !!   9 obj-$(CONFIG_CRYPTO_MD5_SPARC64) += md5-sparc64.o
 12 obj-$(CONFIG_CRYPTO_SHA256_PPC_SPE) += sha256- !!  10 
 13 obj-$(CONFIG_CRYPTO_CRC32C_VPMSUM) += crc32c-v !!  11 obj-$(CONFIG_CRYPTO_AES_SPARC64) += aes-sparc64.o
 14 obj-$(CONFIG_CRYPTO_CRCT10DIF_VPMSUM) += crct1 !!  12 obj-$(CONFIG_CRYPTO_DES_SPARC64) += des-sparc64.o
 15 obj-$(CONFIG_CRYPTO_VPMSUM_TESTER) += crc-vpms !!  13 obj-$(CONFIG_CRYPTO_CAMELLIA_SPARC64) += camellia-sparc64.o
 16 obj-$(CONFIG_CRYPTO_AES_GCM_P10) += aes-gcm-p1 !!  14 
 17 obj-$(CONFIG_CRYPTO_CHACHA20_P10) += chacha-p1 !!  15 obj-$(CONFIG_CRYPTO_CRC32C_SPARC64) += crc32c-sparc64.o
 18 obj-$(CONFIG_CRYPTO_POLY1305_P10) += poly1305- !!  16 
 19 obj-$(CONFIG_CRYPTO_DEV_VMX_ENCRYPT) += vmx-cr !!  17 sha1-sparc64-y := sha1_asm.o sha1_glue.o
 20 obj-$(CONFIG_CRYPTO_CURVE25519_PPC64) += curve !!  18 sha256-sparc64-y := sha256_asm.o sha256_glue.o
 21                                                !!  19 sha512-sparc64-y := sha512_asm.o sha512_glue.o
 22 aes-ppc-spe-y := aes-spe-core.o aes-spe-keys.o !!  20 md5-sparc64-y := md5_asm.o md5_glue.o
 23 md5-ppc-y := md5-asm.o md5-glue.o              !!  21 
 24 sha1-powerpc-y := sha1-powerpc-asm.o sha1.o    !!  22 aes-sparc64-y := aes_asm.o aes_glue.o
 25 sha1-ppc-spe-y := sha1-spe-asm.o sha1-spe-glue !!  23 des-sparc64-y := des_asm.o des_glue.o
 26 sha256-ppc-spe-y := sha256-spe-asm.o sha256-sp !!  24 camellia-sparc64-y := camellia_asm.o camellia_glue.o
 27 crc32c-vpmsum-y := crc32c-vpmsum_asm.o crc32c- !!  25 
 28 crct10dif-vpmsum-y := crct10dif-vpmsum_asm.o c !!  26 crc32c-sparc64-y := crc32c_asm.o crc32c_glue.o
 29 aes-gcm-p10-crypto-y := aes-gcm-p10-glue.o aes << 
 30 chacha-p10-crypto-y := chacha-p10-glue.o chach << 
 31 poly1305-p10-crypto-y := poly1305-p10-glue.o p << 
 32 vmx-crypto-objs := vmx.o aesp8-ppc.o ghashp8-p << 
 33 curve25519-ppc64le-y := curve25519-ppc64le-cor << 
 34                                                << 
 35 ifeq ($(CONFIG_CPU_LITTLE_ENDIAN),y)           << 
 36 override flavour := linux-ppc64le              << 
 37 else                                           << 
 38 ifdef CONFIG_PPC64_ELF_ABI_V2                  << 
 39 override flavour := linux-ppc64-elfv2          << 
 40 else                                           << 
 41 override flavour := linux-ppc64                << 
 42 endif                                          << 
 43 endif                                          << 
 44                                                << 
 45 quiet_cmd_perl = PERL    $@                    << 
 46       cmd_perl = $(PERL) $< $(flavour) > $@    << 
 47                                                << 
 48 targets += aesp10-ppc.S ghashp10-ppc.S aesp8-p << 
 49                                                << 
 50 $(obj)/aesp10-ppc.S $(obj)/ghashp10-ppc.S: $(o << 
 51         $(call if_changed,perl)                << 
 52                                                << 
 53 $(obj)/aesp8-ppc.S $(obj)/ghashp8-ppc.S: $(obj << 
 54         $(call if_changed,perl)                << 
 55                                                << 
 56 OBJECT_FILES_NON_STANDARD_aesp10-ppc.o := y    << 
 57 OBJECT_FILES_NON_STANDARD_ghashp10-ppc.o := y  << 
 58 OBJECT_FILES_NON_STANDARD_aesp8-ppc.o := y     << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php