Skip to content

Commit c55f584

Browse files
committed
windows: install gzip, 7zip
disable c++ modules in settings.gradle.kts add copyright.kts
1 parent 44881fe commit c55f584

Some content is hidden

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

64 files changed

+428
-174
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
run: python -c "import sys; print(sys.version)"
8888

8989
- name: choco
90-
run: choco install openssl dtc-msys2 zip vim
90+
run: choco install openssl dtc-msys2 zip vim gzip 7zip
9191

9292
- name: Unit Test
9393
run: ./gradlew.bat check && ./gradlew.bat clean || true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Make sure you have [JDK11+](https://www.oracle.com/java/technologies/downloads/#
1212
* Mac: `brew install lz4 xz dtc`
1313

1414
* Windows: Install openssl and device-tree compiler with [chocolate](https://chocolatey.org/install)
15-
`choco install openssl dtc-msys2 zip vim`
15+
`choco install openssl dtc-msys2 zip vim gzip 7zip`
1616

1717
## Getting Started
1818
Put your boot.img to current directory, then start gradle 'unpack' task:

bbootimg/src/main/kotlin/avb/AVBInfo.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2018-2022 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/Avb.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2019-2025 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/alg/Algorithm.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2018-2021 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/alg/Algorithms.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2018-2022 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/blob/AuthBlob.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2019-2022 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/blob/AuxBlob.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2019-2022 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/blob/Footer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2019-2022 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

bbootimg/src/main/kotlin/avb/blob/Header.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 yuyezhong@gmail.com
1+
// Copyright 2019-2022 yuyezhong@gmail.com
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)