Skip to content

Commit 69a40c5

Browse files
author
ccj
committed
[bsp][nxp][imx6ull] add imx6ull_alpha board
1 parent 69d6249 commit 69a40c5

58 files changed

Lines changed: 8584 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,5 @@ vdso.lds
7070

7171
# mac
7272
.DS_Store
73+
74+
bsp/qemu-imx6ullevk
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
---
2+
Language: Cpp
3+
BasedOnStyle: Google
4+
5+
ColumnLimit: 120
6+
MaxEmptyLinesToKeep: 5
7+
8+
##
9+
##
10+
##
11+
12+
AccessModifierOffset: -4
13+
ConstructorInitializerIndentWidth: 4
14+
ContinuationIndentWidth: 4
15+
IndentWidth: 4
16+
TabWidth: 4
17+
UseTab: Never
18+
IndentPPDirectives: BeforeHash
19+
IndentCaseLabels: false
20+
BreakBeforeBraces: Custom
21+
22+
23+
24+
##
25+
## Align Style
26+
##
27+
DerivePointerAlignment: false
28+
PointerAlignment: Left
29+
AlignConsecutiveBitFields:
30+
Enabled: true
31+
AcrossEmptyLines: true
32+
AcrossComments: false
33+
AlignEscapedNewlines: Left
34+
AlignTrailingComments:
35+
Kind: Always
36+
OverEmptyLines: 0
37+
AlignConsecutiveMacros:
38+
Enabled: true
39+
AcrossEmptyLines: true
40+
AcrossComments: false
41+
42+
##
43+
## SingleLine Style
44+
##
45+
PackConstructorInitializers: Never
46+
BreakConstructorInitializers: BeforeColon
47+
BreakTemplateDeclarations: Yes
48+
AllowShortLambdasOnASingleLine: None
49+
AllowShortBlocksOnASingleLine: false
50+
AllowShortFunctionsOnASingleLine: None
51+
AllowShortIfStatementsOnASingleLine: Never
52+
AllowShortLoopsOnASingleLine: false
53+
AllowShortCaseLabelsOnASingleLine: false
54+
BinPackArguments: false
55+
BinPackParameters: OnePerLine
56+
57+
Cpp11BracedListStyle: false
58+
BraceWrapping:
59+
AfterClass: false
60+
AfterControlStatement: false
61+
AfterEnum: false
62+
AfterFunction: true
63+
AfterNamespace: true
64+
AfterObjCDeclaration: false
65+
AfterStruct: false
66+
AfterUnion: false
67+
AfterExternBlock: false
68+
BeforeCatch: false
69+
BeforeElse: false
70+
IndentBraces: false
71+
SplitEmptyFunction: true
72+
SplitEmptyRecord: true
73+
SplitEmptyNamespace: true
74+
75+
76+
##
77+
## Others
78+
##
79+
SortIncludes: Never
80+
Standard: c++14
81+
---

0 commit comments

Comments
 (0)