History log of /rkdeveloptool/main.cpp (Results 26 – 50 of 54)
Revision Date Author Comments
# 953670e6 03-Sep-2018 Open Source Software for Rockchip SoCs(moved to https://github.com/rockchip-linux/) <cf@rock-chips.com>

Merge pull request #19 from kgoger/pack_cmd_fix

Fix pack parsing


# 081d237a 28-Mar-2018 liuyi <liuyi@rock-chips.com>

rkdeveloptool: v1.3
1.add LD to list devices
2.add PRM to write parameter
3.change PGPT to PPT to support print parameter and GPT

Signed-off-by: liuyi <liuyi@rock-chips.com>


# 544ec1d4 08-Jan-2018 Klaus Goger <klaus.goger@theobroma-systems.com>

Fix pack parsing

The index needѕ to be incremented after a valid path was found. Otherwise
gOpts.loader[index].name will be out of of bound after the second
iteration.

Signed-off-by: Klaus Goger <k

Fix pack parsing

The index needѕ to be incremented after a valid path was found. Otherwise
gOpts.loader[index].name will be out of of bound after the second
iteration.

Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...


# 5b7445d1 28-Nov-2017 陈豪 | Jacob Chen <jacob-chen@iotwrt.com>

Merge pull request #16 from kgoger/buildfixes

macos/openbsd fixes


# ae4252f0 15-Nov-2017 liuyi <liuyi@rock-chips.com>

wl to support sparse image

Signed-off-by: liuyi <liuyi@rock-chips.com>


# 06ea143e 10-Oct-2017 Klaus Goger <klaus.goger@theobroma-systems.com>

cast emUsbType to uint when compared with uint

uiSupportType is type uint. emUsbType defaults to int.
A logical OR will result in a uint. Therefore cast emUsbType
to uint to prevent following error

cast emUsbType to uint when compared with uint

uiSupportType is type uint. emUsbType defaults to int.
A logical OR will result in a uint. Therefore cast emUsbType
to uint to prevent following error with clang on OpenBSD

cc1plus: warnings being treated as errors
main.cpp: In function 'bool check_device_type(STRUCT_RKDEVICE_DESC&, UINT)':
main.cpp:835: warning: comparison between signed and unsigned integer expressions
*** Error 1 in . (Makefile:461 'main.o')
*** Error 1 in /root/rkdeveloptool (Makefile:506 'all-recursive')

Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...


# 08c0d218 18-Sep-2017 Klaus Goger <klaus.goger@theobroma-systems.com>

use strncmp to compare string literal

Fixes build error with Apple LLVM version 8.1.0 (clang-802.0.42)

main.cpp:1160:18: error: result of comparison against a string literal
is unspecified (use str

use strncmp to compare string literal

Fixes build error with Apple LLVM version 8.1.0 (clang-802.0.42)

main.cpp:1160:18: error: result of comparison against a string literal
is unspecified (use strncmp instead) [-Werror,-Wstring-compare]
if (configPath == (char*)DEF_CONFIG_FILE) {
^~~~~~~~~~~~~~~~~~~~~

Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...


# 3dc7e3ce 08-Aug-2017 liuyi <liuyi@rock-chips.com>

add pgpt command to list gpt info

Signed-off-by: liuyi <liuyi@rock-chips.com>


# 6502326d 07-Aug-2017 liuyi <liuyi@rock-chips.com>

solve the issue that erase flash doesn't work

Signed-off-by: liuyi <liuyi@rock-chips.com>


# 6ae612be 07-Aug-2017 liuyi <liuyi@rock-chips.com>

1.add "wlx" command support flash image by name
2.flash sparse image by wlx command

Signed-off-by: liuyi <liuyi@rock-chips.com>


# c29e5f0f 04-Aug-2017 liuyi <liuyi@rock-chips.com>

1.correct grow partition size error
2.correct backup gpt error
3.add set fixed partition uuid function with parameter_gpt.txt

Signed-off-by: liuyi <liuyi@rock-chips.com>


# b38fe5fc 02-Aug-2017 liuyi <liuyi@rock-chips.com>

1. idblock support rc4flag in ul handler
2. cut off reset device in ul handler

Signed-off-by: liuyi <liuyi@rock-chips.com>


# 2404a38a 16-May-2017 Eddie Cai <eddie.cai.linux@gmail.com>

Merge pull request #11 from afaerber/normal-color

Fix NORMAL_COLOR_ATTR definition


# 2b17a44a 16-May-2017 Eddie Cai <eddie.cai.linux@gmail.com>

Merge pull request #12 from afaerber/error-msg

Prettify text output


# 9bc231bd 14-May-2017 Andreas Färber <afaerber@suse.de>

Show usage on invalid command

Instead of instructing to re-run with -h, just show the usage help.

Signed-off-by: Andreas Färber <afaerber@suse.de>


# 32268622 14-May-2017 Andreas Färber <afaerber@suse.de>

Tweak text output

Add space after comma or colon and before parenthesis and collapse
duplicate space. Don't use parenthesis for progress messages.

Use progressive forms of verbs where suitable.

Wh

Tweak text output

Add space after comma or colon and before parenthesis and collapse
duplicate space. Don't use parenthesis for progress messages.

Use progressive forms of verbs where suitable.

While at it, replace repetition of function names with macro and rename
one variable.

Signed-off-by: Andreas Färber <afaerber@suse.de>

show more ...


# 3601cc08 14-May-2017 Andreas Färber <afaerber@suse.de>

Fix NORMAL_COLOR_ATTR definition

NORMAL_COLOR_ATTR hardcoded white-on-black text. Fix this to reset to
the actual user-controlled defaults.

This resolves white-on-black text after errors on a black

Fix NORMAL_COLOR_ATTR definition

NORMAL_COLOR_ATTR hardcoded white-on-black text. Fix this to reset to
the actual user-controlled defaults.

This resolves white-on-black text after errors on a black-on-white
terminal (issue #10).

Signed-off-by: Andreas Färber <afaerber@suse.de>

show more ...


# e5ee8cc0 25-Apr-2017 liuyi <liuyi@rock-chips.com>

main: fix print 'failed to stat config.ini'error

Signed-off-by: liuyi <liuyi@rock-chips.com>


# d71e8c20 18-Apr-2017 Eddie Cai <eddie.cai.linux@gmail.com>

main: add tag u-boot spl command

Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>


# 055958c9 17-Apr-2017 Kever Yang <kever.yang@rock-chips.com>

main: Do not reset device after ul command success

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>


# 641cfa16 18-Apr-2017 Eddie Cai <eddie.cai.linux@gmail.com>

main: pack command support relative path

Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>


# 78884ef4 17-Apr-2017 Eddie Cai <eddie.cai.linux@gmail.com>

main: add pack and unpack boot loader support

pack and unpack boot loader is very helpful when debug boot loader.
we should support it in rkdeveloptool.

Signed-off-by: Eddie Cai <eddie.cai.linux@gm

main: add pack and unpack boot loader support

pack and unpack boot loader is very helpful when debug boot loader.
we should support it in rkdeveloptool.

Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>

show more ...


# 154ee062 16-Apr-2017 Eddie Cai <eddie.cai.linux@gmail.com>

main: modify usage

modify usage to make it more readable

Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>


# 8df2d64a 16-Apr-2017 Eddie Cai <eddie.cai.linux@gmail.com>

main: support lower case command

people use lower case more than upper case. so we should support
lower case command

Signed-off-by: Eddie Cai <eddie.cai.linux@gmail.com>


# c30d921c 11-Apr-2017 Kever Yang <kever.yang@rock-chips.com>

main: update to version 1.2

- add gpt command to write gpt table
- add ul command, need run db first

Signed-off-by: Liu Yi <liuyi@rock-chips.com>
Signed-off-by: Kever Yang <kever.yang@rock-chips.co

main: update to version 1.2

- add gpt command to write gpt table
- add ul command, need run db first

Signed-off-by: Liu Yi <liuyi@rock-chips.com>
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Tested-by: Kever Yang <kever.yang@rock-chips.com>

show more ...


123