Skip to content

Commit

Permalink
Change radare->radareorg links
Browse files Browse the repository at this point in the history
  • Loading branch information
Maijin committed Oct 7, 2019
1 parent c4f4463 commit 4587fa1
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .builds/freebsd.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .builds/openbsd.yml
Expand Up @@ -8,7 +8,7 @@ environment:
CXX: clang++
CC: clang
sources:
- https://github.com/radare/radare2
- https://github.com/radareorg/radare2
tasks:
- build: |
cd radare2
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Expand Up @@ -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
Expand All @@ -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)
2 changes: 1 addition & 1 deletion Vagrantfile.sh
Expand Up @@ -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
2 changes: 0 additions & 2 deletions doc/esil.md
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/freebsd.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion doc/openbsd.md
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions 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
2 changes: 1 addition & 1 deletion libr/anal/p/anal_mips_gnu.c
Expand Up @@ -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);
Expand Down

0 comments on commit 4587fa1

Please sign in to comment.