Skip to content

Commit 4587fa1

Browse files
author
Maijin
committed
Change radare->radareorg links
1 parent c4f4463 commit 4587fa1

File tree

9 files changed

+12
-14
lines changed

9 files changed

+12
-14
lines changed

.builds/freebsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment:
1010
CC: clang
1111
HOST_CC: clang
1212
sources:
13-
- https://github.com/radare/radare2
13+
- https://github.com/radareorg/radare2
1414
tasks:
1515
- build: |
1616
cd radare2

.builds/openbsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ environment:
88
CXX: clang++
99
CC: clang
1010
sources:
11-
- https://github.com/radare/radare2
11+
- https://github.com/radareorg/radare2
1212
tasks:
1313
- build: |
1414
cd radare2

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ try to keep the codebase consistent and clean.
2121
* Fork the repository on GitHub.
2222
* Create a topic branch from master. Please avoid working directly on the ```master``` branch.
2323
* Make commits of logical units.
24-
* 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)).
24+
* 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)).
2525
* Submit the Pull Request(PR) on Github.
2626
* When relevant, write a test for
2727
[radare2-regressions](https://github.com/radareorg/radare2-regressions) and
@@ -32,5 +32,5 @@ try to keep the codebase consistent and clean.
3232

3333
# Additional resources
3434

35-
* [README.md](https://github.com/radare/radare2/blob/master/README.md)
36-
* [DEVELOPERS.md](https://github.com/radare/radare2/blob/master/DEVELOPERS.md)
35+
* [README.md](https://github.com/radareorg/radare2/blob/master/README.md)
36+
* [DEVELOPERS.md](https://github.com/radareorg/radare2/blob/master/DEVELOPERS.md)

Vagrantfile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Updates
44
sudo pacman -Syu
55

6-
git clone --depth=1 https://github.com/radare/radare2
6+
git clone --depth=1 https://github.com/radareorg/radare2
77
cd radare2 && ./sys/install.sh

doc/esil.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
ESIL
22
====
33

4-
# source https://github.com/radare/radare2/wiki/ESIL
5-
64
ESIL stands for 'Evaluable Strings Intermediate Language'. It aims to describe a
75
Forth-like representation for every opcode. Those representations can be
86
evaluated in order to emulate code. Each element of an esil expression is

doc/freebsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Radare2 Dependencies:
1313

1414
sudo pkg install git gcc gmake patch pkgconf
1515

16-
git clone https://github.com/radare/radare2
16+
git clone https://github.com/radareorg/radare2
1717
cd radare2
1818
sys/install.sh /usr/local
1919

doc/openbsd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Radare2 Dependencies:
1313

1414
doas pkg_add git gcc gmake pkgconf
1515

16-
git clone https://github.com/radare/radare2
16+
git clone https://github.com/radareorg/radare2
1717
cd radare2
1818
sys/install.sh /usr/local
1919

doc/repo

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/sh
2-
R2=https://github.com/radare/radare2
2+
R2=https://github.com/radareorg/radare2
33
IRED=https://github.com/radare/ired
4-
EXTRAS=https://github.com/radare/radare2-extras
4+
EXTRAS=https://github.com/radareorg/radare2-extras
55
CAPSTONE=https://github.com/radare/radare2-capstone
6-
BINDINGS=https://github.com/radare/radare2-bindings
6+
BINDINGS=https://github.com/radareorg/radare2-bindings
77
REGRESSIONS=https://github.com/radareorg/radare2-regressions
88
PR_REGRESSIONS=https://github.com/__USER__/radare2-regressions
99
[ -z "$1" ] && grep -h $0 | grep -v grep || eval echo \$$1

libr/anal/p/anal_mips_gnu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ static int mips_op(RAnal *anal, RAnalOp *op, ut64 addr, const ut8 *b, int len, R
275275
// but the macro needs the opcode values as input
276276
//
277277
// TODO: this is a stop-gap. Really we need some smarts in here to tie this into the
278-
// flags directly, as suggested here: https://github.com/radare/radare2/issues/949#issuecomment-43654922
278+
// flags directly, as suggested here: https://github.com/radareorg/radare2/issues/949#issuecomment-43654922
279279
case 15: // lui
280280
op->dst = r_anal_value_new ();
281281
op->dst->reg = r_reg_get (anal->reg, mips_reg_decode(rt), R_REG_TYPE_GPR);

0 commit comments

Comments
 (0)