File tree 11 files changed +18
-18
lines changed
11 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -396,8 +396,8 @@ config TARGET_MX35PDK
396
396
bool "Support mx35pdk"
397
397
select CPU_ARM1136
398
398
399
- config TARGET_RPI_B
400
- bool "Support rpi_b "
399
+ config TARGET_RPI
400
+ bool "Support rpi "
401
401
select CPU_ARM1176
402
402
403
403
config TARGET_TNETV107X_EVM
@@ -931,7 +931,7 @@ source "board/palmtreo680/Kconfig"
931
931
source "board/phytec/pcm051/Kconfig"
932
932
source "board/ppcag/bg0900/Kconfig"
933
933
source "board/pxa255_idp/Kconfig"
934
- source "board/raspberrypi/rpi_b /Kconfig"
934
+ source "board/raspberrypi/rpi /Kconfig"
935
935
source "board/ronetix/pm9261/Kconfig"
936
936
source "board/ronetix/pm9263/Kconfig"
937
937
source "board/ronetix/pm9g45/Kconfig"
Original file line number Diff line number Diff line change 1
- if TARGET_RPI_B
1
+ if TARGET_RPI
2
2
3
3
config SYS_BOARD
4
- default "rpi_b "
4
+ default "rpi "
5
5
6
6
config SYS_VENDOR
7
7
default "raspberrypi"
@@ -10,6 +10,6 @@ config SYS_SOC
10
10
default "bcm2835"
11
11
12
12
config SYS_CONFIG_NAME
13
- default "rpi_b "
13
+ default "rpi "
14
14
15
15
endif
Original file line number Diff line number Diff line change
1
+ RPI BOARD
2
+ M: Stephen Warren <
[email protected] >
3
+ S: Maintained
4
+ F: board/raspberrypi/rpi/
5
+ F: include/configs/rpi.h
6
+ F: configs/rpi_defconfig
Original file line number Diff line number Diff line change 12
12
# GNU General Public License for more details.
13
13
#
14
14
15
- obj-y := rpi_b .o
15
+ obj-y := rpi .o
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -530,7 +530,7 @@ static int lcd_init(void *lcdbase)
530
530
lcd_ctrl_init (lcdbase );
531
531
532
532
/*
533
- * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi_b ) ignores
533
+ * lcd_ctrl_init() of some drivers (i.e. bcm2835 on rpi ) ignores
534
534
* the 'lcdbase' argument and uses custom lcd base address
535
535
* by setting up gd->fb_base. Check for this condition and fixup
536
536
* 'lcd_base' address.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ CONFIG_ARM=y
2
+ CONFIG_TARGET_RPI=y
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ sudo apt-get install clang
28
28
29
29
To compile U-Boot with clang on linux without IAS use e.g.:
30
30
export TRIPLET=arm-linux-gnueabi && export CROSS_COMPILE="$TRIPLET-"
31
- make HOSTCC=clang CC="clang -target $TRIPLET -mllvm -arm-use-movt=0 -no-integrated-as" rpi_b_defconfig
31
+ make HOSTCC=clang CC="clang -target $TRIPLET -mllvm -arm-use-movt=0 -no-integrated-as" rpi_defconfig
32
32
make HOSTCC=clang CC="clang -target $TRIPLET -mllvm -arm-use-movt=0 -no-integrated-as" all V=1 -j8
33
33
34
34
FreeBSD 11 (Current):
@@ -42,7 +42,7 @@ ln -s /usr/local/bin/arm-gnueabi-freebsd-as /usr/bin/arm-freebsd-eabi-as
42
42
# The following commands compile U-Boot using the clang xdev toolchain.
43
43
# NOTE: CROSS_COMPILE and target differ on purpose!
44
44
export CROSS_COMPILE=arm-gnueabi-freebsd-
45
- gmake CC="clang -target arm-freebsd-eabi --sysroot /usr/arm-freebsd -no-integrated-as -mllvm -arm-use-movt=0" rpi_b_defconfig
45
+ gmake CC="clang -target arm-freebsd-eabi --sysroot /usr/arm-freebsd -no-integrated-as -mllvm -arm-use-movt=0" rpi_defconfig
46
46
gmake CC="clang -target arm-freebsd-eabi --sysroot /usr/arm-freebsd -no-integrated-as -mllvm -arm-use-movt=0" -j8
47
47
48
48
Given that u-boot will default to gcc, above commands can be
File renamed without changes.
You can’t perform that action at this time.
0 commit comments