Print this page
10816 ctf_dwarf_convert_type() relies on un-initialized id
10817 ctfconvert -i option is mis-handled
10818 Improve ctfconvert error messages
10819 ctfconvert should handle empty dies
10820 ctfconvert -i never converts
10821 bad free in ctf_dwarf_init_die
10815 shouldn't build gcore.c as part of kmdb
Reviewed by: Robert Mustacchi <rm@joyent.com>
Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com>
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/uts/intel/sha1/Makefile
+++ new/usr/src/uts/intel/sha1/Makefile
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
↓ open down ↓ |
10 lines elided |
↑ open up ↑ |
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 -#
22 -# uts/intel/sha1/Makefile
23 -#
24 21 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
25 22 # Use is subject to license terms.
26 23 #
24 +# Copyright (c) 2019, Joyent, Inc.
27 25 #
28 -# This makefile drives the production of the sha1 crypto kernel module.
29 -#
30 -# intel architecture dependent
31 -#
32 26
33 27 #
34 28 # Path to the base of the uts directory tree (usually /usr/src/uts).
35 29 #
36 30 UTSBASE = ../..
37 31 COMDIR = $(COMMONBASE)/crypto
38 32
39 33 #
40 34 # Define the module and object file sets.
41 35 #
42 36 MODULE = sha1
43 37 SHA1_OBJS_32 =
44 38 SHA1_OBJS_64 = sha1-x86_64.o
45 39 SHA1_OBJS += $(SHA1_OBJS_$(CLASS))
46 40 OBJECTS = $(SHA1_OBJS:%=$(OBJS_DIR)/%)
47 41 LINTS = $(SHA1_OBJS:%.o=$(LINTS_DIR)/%.ln)
48 42 ROOTMODULE = $(ROOT_CRYPTO_DIR)/$(MODULE)
49 43 ROOTLINK = $(ROOT_MISC_DIR)/$(MODULE)
50 44
51 45 #
52 46 # Include common rules.
53 47 #
54 48 include $(UTSBASE)/intel/Makefile.intel
55 49
56 50 #
57 51 # Override defaults
58 52 #
59 53 CLEANFILES += sha1-x86_64.s
60 54
61 55 #
62 56 # Linkage dependencies
63 57 #
64 58 LDFLAGS += -dy -Nmisc/kcf
65 59
66 60 CFLAGS += -I$(COMDIR)
67 61 LINTFLAGS += -I$(COMDIR)
68 62
69 63
70 64 #
71 65 # Define targets
72 66 #
73 67 ALL_TARGET = $(BINARY)
74 68 LINT_TARGET = $(MODULE).lint
75 69 INSTALL_TARGET = $(BINARY) $(ROOTMODULE) $(ROOTLINK)
76 70
77 71 #
78 72 # Default build targets.
79 73 #
80 74 .KEEP_STATE:
81 75
82 76 def: $(DEF_DEPS)
83 77
84 78 all: $(ALL_DEPS)
85 79
86 80 clean: $(CLEAN_DEPS)
87 81
88 82 clobber: $(CLOBBER_DEPS)
89 83
90 84 lint: $(LINT_DEPS)
91 85
92 86 modlintlib: $(MODLINTLIB_DEPS)
93 87
94 88 clean.lint: $(CLEAN_LINT_DEPS)
95 89
96 90 install: $(INSTALL_DEPS)
97 91
↓ open down ↓ |
56 lines elided |
↑ open up ↑ |
98 92 $(ROOTLINK): $(ROOT_MISC_DIR) $(ROOTMODULE)
99 93 -$(RM) $@; ln $(ROOTMODULE) $@
100 94
101 95 #
102 96 # Include common targets.
103 97 #
104 98 include $(UTSBASE)/intel/Makefile.targ
105 99
106 100 $(OBJS_DIR)/sha1-x86_64.o: sha1-x86_64.s
107 101 $(COMPILE.s) -o $@ ${@F:.o=.s}
108 - $(POST_PROCESS_O)
109 102
110 103 $(OBJS_DIR)/sha1-x86_64.ln: sha1-x86_64.s
111 104 @($(LHEAD) $(LINT.c) ${@F:.ln=.s} $(LTAIL))
112 105
113 106 sha1-x86_64.s: $(COMDIR)/sha1/amd64/sha1-x86_64.pl
114 107 $(PERL) $? $@
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX