mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 13:19:54 +00:00
Change radare->radareorg links
This commit is contained in:
parent
c4f4463681
commit
4587fa13b5
@ -10,7 +10,7 @@ environment:
|
||||
CC: clang
|
||||
HOST_CC: clang
|
||||
sources:
|
||||
- https://github.com/radare/radare2
|
||||
- https://github.com/radareorg/radare2
|
||||
tasks:
|
||||
- build: |
|
||||
cd radare2
|
||||
|
@ -8,7 +8,7 @@ environment:
|
||||
CXX: clang++
|
||||
CC: clang
|
||||
sources:
|
||||
- https://github.com/radare/radare2
|
||||
- https://github.com/radareorg/radare2
|
||||
tasks:
|
||||
- build: |
|
||||
cd radare2
|
||||
|
@ -21,7 +21,7 @@ try to keep the codebase consistent and clean.
|
||||
* Fork the repository on GitHub.
|
||||
* Create a topic branch from master. Please avoid working directly on the ```master``` branch.
|
||||
* Make commits of logical units.
|
||||
* Check for coding style issues with ```git diff master..mybranch | ./sys/clang-format-diff.py -p1``` and be sure to follow the CODINGSTYLE (more on this in [DEVELOPERS.md](https://github.com/radare/radare2/blob/master/DEVELOPERS.md)).
|
||||
* Check for coding style issues with ```git diff master..mybranch | ./sys/clang-format-diff.py -p1``` and be sure to follow the CODINGSTYLE (more on this in [DEVELOPERS.md](https://github.com/radareorg/radare2/blob/master/DEVELOPERS.md)).
|
||||
* Submit the Pull Request(PR) on Github.
|
||||
* When relevant, write a test for
|
||||
[radare2-regressions](https://github.com/radareorg/radare2-regressions) and
|
||||
@ -32,5 +32,5 @@ try to keep the codebase consistent and clean.
|
||||
|
||||
# Additional resources
|
||||
|
||||
* [README.md](https://github.com/radare/radare2/blob/master/README.md)
|
||||
* [DEVELOPERS.md](https://github.com/radare/radare2/blob/master/DEVELOPERS.md)
|
||||
* [README.md](https://github.com/radareorg/radare2/blob/master/README.md)
|
||||
* [DEVELOPERS.md](https://github.com/radareorg/radare2/blob/master/DEVELOPERS.md)
|
||||
|
@ -3,5 +3,5 @@
|
||||
# Updates
|
||||
sudo pacman -Syu
|
||||
|
||||
git clone --depth=1 https://github.com/radare/radare2
|
||||
git clone --depth=1 https://github.com/radareorg/radare2
|
||||
cd radare2 && ./sys/install.sh
|
||||
|
@ -1,8 +1,6 @@
|
||||
ESIL
|
||||
====
|
||||
|
||||
# source https://github.com/radare/radare2/wiki/ESIL
|
||||
|
||||
ESIL stands for 'Evaluable Strings Intermediate Language'. It aims to describe a
|
||||
Forth-like representation for every opcode. Those representations can be
|
||||
evaluated in order to emulate code. Each element of an esil expression is
|
||||
|
@ -13,7 +13,7 @@ Radare2 Dependencies:
|
||||
|
||||
sudo pkg install git gcc gmake patch pkgconf
|
||||
|
||||
git clone https://github.com/radare/radare2
|
||||
git clone https://github.com/radareorg/radare2
|
||||
cd radare2
|
||||
sys/install.sh /usr/local
|
||||
|
||||
|
@ -13,7 +13,7 @@ Radare2 Dependencies:
|
||||
|
||||
doas pkg_add git gcc gmake pkgconf
|
||||
|
||||
git clone https://github.com/radare/radare2
|
||||
git clone https://github.com/radareorg/radare2
|
||||
cd radare2
|
||||
sys/install.sh /usr/local
|
||||
|
||||
|
6
doc/repo
6
doc/repo
@ -1,9 +1,9 @@
|
||||
#!/bin/sh
|
||||
R2=https://github.com/radare/radare2
|
||||
R2=https://github.com/radareorg/radare2
|
||||
IRED=https://github.com/radare/ired
|
||||
EXTRAS=https://github.com/radare/radare2-extras
|
||||
EXTRAS=https://github.com/radareorg/radare2-extras
|
||||
CAPSTONE=https://github.com/radare/radare2-capstone
|
||||
BINDINGS=https://github.com/radare/radare2-bindings
|
||||
BINDINGS=https://github.com/radareorg/radare2-bindings
|
||||
REGRESSIONS=https://github.com/radareorg/radare2-regressions
|
||||
PR_REGRESSIONS=https://github.com/__USER__/radare2-regressions
|
||||
[ -z "$1" ] && grep -h $0 | grep -v grep || eval echo \$$1
|
||||
|
@ -275,7 +275,7 @@ static int mips_op(RAnal *anal, RAnalOp *op, ut64 addr, const ut8 *b, int len, R
|
||||
// but the macro needs the opcode values as input
|
||||
//
|
||||
// TODO: this is a stop-gap. Really we need some smarts in here to tie this into the
|
||||
// flags directly, as suggested here: https://github.com/radare/radare2/issues/949#issuecomment-43654922
|
||||
// flags directly, as suggested here: https://github.com/radareorg/radare2/issues/949#issuecomment-43654922
|
||||
case 15: // lui
|
||||
op->dst = r_anal_value_new ();
|
||||
op->dst->reg = r_reg_get (anal->reg, mips_reg_decode(rt), R_REG_TYPE_GPR);
|
||||
|
Loading…
Reference in New Issue
Block a user