This website works better with JavaScript.
Home
Explore
Help
Sign In
lukechilds
/
mender-convert
mirror of
https://github.com/lukechilds/mender-convert.git
Watch
1
Star
0
Fork
0
Code
Issues
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
966
Commits
20
Branches
28
Tags
1.7 MiB
Tree:
c0fee00b63
1.0.x
1.1.x
1.2.x
2.0.x
2.1.x
2.2.x
2.3.x
2.4.x
2.5.x
2.6.x
2.7.x
3.0.x
4.0.x
automatic_bootstrap_artifact
change-dependabot-prefix
create-pull-request/patch
master
patch-1
pr_475
revert-252-rm-only-tag-2.2.x
1.0.0
1.1.0
1.1.1
1.2.0
1.2.1
1.2.2
2.0.0
2.0.1
2.1.0
2.2.0
2.2.1
2.2.2
2.2.2-build1
2.3.0
2.3.1
2.4.0
2.5.0
2.5.2
2.5.3
2.6.0
2.6.1
2.6.2
2.7.0-build1
3.0.0
3.0.1
3.0.2
4.0.0
4.0.1
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'c0fee00b63'
${ noResults }
mender-convert
/
.dockerignore
5 lines
34 B
Raw
Normal View
History
MEN-2608: add mender-convert (version 2) The goals of the re-write was to achieve the following: 1. It should be easy to extend the tool to support other boards or distributions 2. We should not compile code in the tool (rely on binaries built elsewhere) compiling code increases complexity, due to requirement of toolchains etc. 3. The tool shall not be designed around specific hardware/platform types - This is the case today with the usage of --device-type flag 4 The tool should be to convert images without knowing anything about the hardware/platform relates to above 3. 5. Configuration interface should be simplified - command line flags -> configuration files 6. Platform specific code shall be provided trough “hooks”, and are not part of the “core” mender-convert code 7. It shall be easy to extend functionality - support for rootfs overlay to inject user applications/configurations - ability to override how the Mender Artifact is generated (to be able to sign and include state-scripts) 8. Code structure should be modular - Eases Maintenance and possibility of making isolated changes Changelog: Title Signed-off-by: Mirza Krak <mirza.krak@northern.tech>
6 years ago
deploy
input
work
Account for root ownership of overlay files. Since we chown and chmod files in the overlay, we need to ensure that we can write to them in each of the bootstrap-rootfs-overlay generation scripts. Eventually, I think we should make overlays as tarballs with ownership and permissions inside the archive to avoid this dance. Changelog: Title Signed-off-by: Drew Moseley <drew.moseley@northern.tech>
4 years ago
rootfs_overlay*