Skip to content

Commit 4d27325

Browse files
authored
Merge pull request hathach#1961 from hathach/remove-all-submodules
Remove all submodules
2 parents 16daad8 + 6683053 commit 4d27325

File tree

610 files changed

+2664
-2799
lines changed

Some content is hidden

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

610 files changed

+2664
-2799
lines changed

.codespell/ignore-words.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ dout
77
mot
88
te
99
attch
10+
endianess
11+
pris

.codespellrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ exclude-file = .codespell/exclude-file.txt
77
check-filenames =
88
check-hidden =
99
count =
10-
skip = .cproject,./.git,./hw/mcu,./lib,./examples/*/*/_build,./examples/*/*/ses,./examples/*/*/ozone,./hw/mcu,./test/unit-test/vendor,./tests_obsolete,./tools/uf2
10+
skip = *.rb,.cproject,.git,./lib,./examples/*/*/_build,./examples/*/*/ses,./examples/*/*/ozone,./hw/mcu,./tests_obsolete

.gitattributes

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Set the default behavior, in case people don't have core.autocrlf set.
22
* text=auto
33

4-
*.c text
5-
*.cpp text
4+
*.c text
5+
*.cpp text
66
*.h text
7-
*.icf text
7+
*.icf text
88
*.js text
99
*.json text
1010
*.ld text

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ body:
5454
Exact steps in chronological order, details should be specific e.g if you use a command/script to test with, please post it as well.
5555
1. Go to '...'
5656
2. Click on '....'
57-
3. See error
57+
3. See error
5858
validations:
5959
required: true
6060

@@ -63,9 +63,9 @@ body:
6363
label: Debug Log as txt file
6464
placeholder: |
6565
Attach your debug log txt file here, where the issue occurred, best with comments to explain the actual events.
66-
66+
6767
Note1: Please DO NOT paste your lengthy log contents here since it hurts the readability.
68-
Note2: To enable logging, add `LOG=3` to to the make command if building with stock examples or set `CFG_TUSB_DEBUG=3` in your tusb_config.h.
68+
Note2: To enable logging, add `LOG=3` to to the make command if building with stock examples or set `CFG_TUSB_DEBUG=3` in your tusb_config.h.
6969
More information can be found at [example's readme](https://github.com/hathach/tinyusb/blob/master/docs/getting_started.md)
7070
validations:
7171
required: false

.github/workflows/build_aarch64.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ jobs:
4242
- name: Checkout TinyUSB
4343
uses: actions/checkout@v3
4444

45-
- name: Checkout common submodules in lib
46-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
47-
4845
- name: Checkout hathach/linkermap
4946
uses: actions/checkout@v3
5047
with:

.github/workflows/build_arm.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ jobs:
6565
- name: Checkout TinyUSB
6666
uses: actions/checkout@v3
6767

68-
- name: Checkout common submodules in lib
69-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
70-
7168
- name: Checkout hathach/linkermap
7269
uses: actions/checkout@v3
7370
with:
@@ -145,9 +142,6 @@ jobs:
145142
- name: Checkout TinyUSB
146143
uses: actions/checkout@v3
147144

148-
- name: Checkout common submodules in lib
149-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
150-
151145
- name: Build
152146
run: python3 tools/build_board.py ${{ matrix.example }}
153147

@@ -275,4 +269,4 @@ jobs:
275269
- name: Test dfu_runtime
276270
run: |
277271
./flash.sh dfu_runtime.elf
278-
while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 10 ]; do :; done
272+
while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 10 ]; do :; done

.github/workflows/build_iar.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
family:
3131
# Alphabetical order
3232
# Note: bundle multiple families into a matrix since there is only one self-hosted instance can
33-
# run IAR build. Too many matrix can hurt due to setup/teardown overhead.
33+
# run IAR build. Too many matrix can hurt due to setup/teardown overhead.
3434
- 'stm32f0 stm32f1 stm32f4 stm32f7 stm32g4 stm32h7 stm32l4'
3535
steps:
3636
- name: Clean workspace
@@ -42,10 +42,8 @@ jobs:
4242
- name: Checkout TinyUSB
4343
uses: actions/checkout@v3
4444

45-
- name: Checkout submodules and dependencies
46-
run: |
47-
git submodule update --init lib/FreeRTOS-Kernel lib/lwip
48-
python3 tools/get_family_deps.py ${{ matrix.family }}
45+
- name: Get Dependencies
46+
run: python3 tools/get_family_deps.py ${{ matrix.family }}
4947

5048
- name: Build
5149
run: python3 tools/build_family.py ${{ matrix.family }} CC=iccarm

.github/workflows/build_msp430.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
2222
cancel-in-progress: true
2323

24-
jobs:
24+
jobs:
2525
build-msp430:
2626
runs-on: ubuntu-latest
2727
strategy:
@@ -40,9 +40,6 @@ jobs:
4040
- name: Checkout TinyUSB
4141
uses: actions/checkout@v3
4242

43-
- name: Checkout common submodules in lib
44-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
45-
4643
- name: Checkout hathach/linkermap
4744
uses: actions/checkout@v3
4845
with:

.github/workflows/build_renesas.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ jobs:
3939
- name: Checkout TinyUSB
4040
uses: actions/checkout@v3
4141

42-
- name: Checkout common submodules in lib
43-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
44-
4542
- name: Checkout hathach/linkermap
4643
uses: actions/checkout@v3
4744
with:

.github/workflows/build_riscv.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,6 @@ jobs:
4141
- name: Checkout TinyUSB
4242
uses: actions/checkout@v3
4343

44-
- name: Checkout common submodules in lib
45-
run: git submodule update --init lib/FreeRTOS-Kernel lib/lwip
46-
4744
- name: Checkout hathach/linkermap
4845
uses: actions/checkout@v3
4946
with:

0 commit comments

Comments
 (0)