Lines Matching +full:separately +full:- +full:defined
5 --------
14 ------------
16 The object files for SPL are built separately and placed in the "spl" directory.
17 The final binaries which are generated are u-boot-spl, u-boot-spl.bin and
18 u-boot-spl.map.
26 obj-y += board_spl.o
28 obj-y += board.o
31 obj-$(CONFIG_SPL_BUILD) += foo.o
42 defined with CONFIG_SPL_LDSCRIPT.
44 To support generic U-Boot libraries and drivers in the SPL binary one can
71 ---------
74 as in most cases do_reset is not defined within SPL.
78 ----------------------
81 stack usage at various points in run sequence of SPL. The -fstack-usage option
85 Must have gcc 4.6 or later, which supports -fstack-usage
90 $ find spl -name '*.su' | sed -e 's:^spl/::' -e 's:[.]su$:.c:' > used-spl.list
92 $ cflow --main=board_init_r `cat used-spl.list` 2>&1 | $PAGER