yangfl
yangfl
Hey this is makefile... variable assignments won't last to other commands
So you've seen it... Is there any `export` in this patch?
Hmm. Please, make a tiny experiment: ```make A:=1 export A all: echo $(A) echo $$A A=2 echo $(A) A=2 echo $$A A=2 echo $(A) echo $$A ```
Let the maintainer judge this.
Since you are misleading in makefile workflows I would like to wait others' reviews.
@aparcar ok, fixed
It's more of a bug fix during my porting to new device. I've clarified it in commit message.
The device which uses this patch #10852
@Ansuel How about this? ```c char *rootdev = NULL; char *next_rootdev = command_line - 5; char *rootfs = NULL; char *next_rootfs = command_line - 11; /* * Find the last...
@Ansuel Fixed (if I got you right)