
Am 19.12.19 um 12:40 schrieb MCon:
Details about this SoM can be found at "https://vocore.io/v2.html". This port is working for me and able to boot Linux v5.0. Some subsystems (notably SD) are not working due to shortcomings of current drivers (e.g.: mtk_sd.c); they work in the booted Linux.
NOTE: This is my first attempt to use patman; any hint welcome.
1. you can omit the "Cover-letter" option if you want to send a single patch only.
2. always run patman with -n/--dry-run before sending the patches out to check for checkpatch.pl errors and fix them if needed
3. always run patman with -m to disable the automatic maintainer detection. This usually bloats the CC list. It's better to specify the relevant maintainers per patch. You could use the aliases from doc/git-mailrc to save some typing, for instance:
to: uboot cc: danielschwierzeck cc: stroese
MCon (1): Port to new board "VoCore2"
arch/mips/dts/Makefile | 6 ++-- arch/mips/dts/vocore2.dts | 62 +++++++++++++++++++++++++++++++++++ arch/mips/mach-mtmips/Kconfig | 9 +++++ board/vonger/vocore2/Kconfig | 11 +++++++ board/vonger/vocore2/Makefile | 2 ++ board/vonger/vocore2/board.c | 35 ++++++++++++++++++++ configs/vocore2_defconfig | 61 ++++++++++++++++++++++++++++++++++ include/configs/vocore2.h | 57 ++++++++++++++++++++++++++++++++ 8 files changed, 240 insertions(+), 3 deletions(-) create mode 100644 arch/mips/dts/vocore2.dts create mode 100644 board/vonger/vocore2/Kconfig create mode 100644 board/vonger/vocore2/Makefile create mode 100644 board/vonger/vocore2/board.c create mode 100644 configs/vocore2_defconfig create mode 100644 include/configs/vocore2.h