Skip to content

Commit 3246584

Browse files
kimphillYork Sun
authored andcommitted
mpc85xx: configs: remove c=ffe from default environment
AFAICT, c=ffe does nothing and was a typo from the original commit d171236 "powerpc/p4080: Add support for the P4080DS board" and just kept on getting duplicated in subsequently added board config files. Signed-off-by: Kim Phillips <[email protected]> Acked-by: Edward Swarthout <[email protected]> Reviewed-by: York Sun <[email protected]>
1 parent bc2d40c commit 3246584

File tree

9 files changed

+9
-18
lines changed

9 files changed

+9
-18
lines changed

include/configs/B4860QDS.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -838,8 +838,7 @@ unsigned long get_board_ddr_clk(void);
838838
"ramdiskfile=b4860qds/ramdisk.uboot\0" \
839839
"fdtaddr=c00000\0" \
840840
"fdtfile=b4860qds/b4860qds.dtb\0" \
841-
"bdev=sda3\0" \
842-
"c=ffe\0"
841+
"bdev=sda3\0"
843842

844843
/* For emulation this causes u-boot to jump to the start of the proof point
845844
app code automatically */

include/configs/P2041RDB.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,8 +713,7 @@ unsigned long get_board_sys_clk(unsigned long dummy);
713713
"ramdiskfile=p2041rdb/ramdisk.uboot\0" \
714714
"fdtaddr=c00000\0" \
715715
"fdtfile=p2041rdb/p2041rdb.dtb\0" \
716-
"bdev=sda3\0" \
717-
"c=ffe\0"
716+
"bdev=sda3\0"
718717

719718
#define CONFIG_HDBOOT \
720719
"setenv bootargs root=/dev/$bdev rw " \

include/configs/T1040QDS.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -767,8 +767,7 @@ unsigned long get_board_ddr_clk(void);
767767
"ramdiskfile=t1040qds/ramdisk.uboot\0" \
768768
"fdtaddr=c00000\0" \
769769
"fdtfile=t1040qds/t1040qds.dtb\0" \
770-
"bdev=sda3\0" \
771-
"c=ffe\0"
770+
"bdev=sda3\0"
772771

773772
#define CONFIG_LINUX \
774773
"setenv bootargs root=/dev/ram rw " \

include/configs/T104xRDB.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -779,8 +779,7 @@
779779
"ramdiskfile=" __stringify(RAMDISKFILE) "\0" \
780780
"fdtaddr=c00000\0" \
781781
"fdtfile=" __stringify(FDTFILE) "\0" \
782-
"bdev=sda3\0" \
783-
"c=ffe\0"
782+
"bdev=sda3\0"
784783

785784
#define CONFIG_LINUX \
786785
"setenv bootargs root=/dev/ram rw " \

include/configs/T208xQDS.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -837,8 +837,7 @@ unsigned long get_board_ddr_clk(void);
837837
"ramdiskfile=t2080qds/ramdisk.uboot\0" \
838838
"fdtaddr=c00000\0" \
839839
"fdtfile=t2080qds/t2080qds.dtb\0" \
840-
"bdev=sda3\0" \
841-
"c=ffe\0"
840+
"bdev=sda3\0"
842841

843842
/*
844843
* For emulation this causes u-boot to jump to the start of the

include/configs/T208xRDB.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -797,8 +797,7 @@ unsigned long get_board_ddr_clk(void);
797797
"ramdiskfile=t2080rdb/ramdisk.uboot\0" \
798798
"fdtaddr=c00000\0" \
799799
"fdtfile=t2080rdb/t2080rdb.dtb\0" \
800-
"bdev=sda3\0" \
801-
"c=ffe\0"
800+
"bdev=sda3\0"
802801

803802
/*
804803
* For emulation this causes u-boot to jump to the start of the

include/configs/T4240EMU.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,7 @@
128128
"ramdiskfile=t4240emu/ramdisk.uboot\0" \
129129
"fdtaddr=c00000\0" \
130130
"fdtfile=t4240emu/t4240emu.dtb\0" \
131-
"bdev=sda3\0" \
132-
"c=ffe\0"
131+
"bdev=sda3\0"
133132

134133
/*
135134
* For emulation this causes u-boot to jump to the start of the proof point

include/configs/T4240QDS.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,8 +572,7 @@ unsigned long get_board_ddr_clk(void);
572572
"ramdiskfile=t4240qds/ramdisk.uboot\0" \
573573
"fdtaddr=c00000\0" \
574574
"fdtfile=t4240qds/t4240qds.dtb\0" \
575-
"bdev=sda3\0" \
576-
"c=ffe\0"
575+
"bdev=sda3\0"
577576

578577
#define CONFIG_HVBOOT \
579578
"setenv bootargs config-addr=0x60000000; " \

include/configs/corenet_ds.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -715,8 +715,7 @@
715715
"ramdiskfile=p4080ds/ramdisk.uboot\0" \
716716
"fdtaddr=c00000\0" \
717717
"fdtfile=p4080ds/p4080ds.dtb\0" \
718-
"bdev=sda3\0" \
719-
"c=ffe\0"
718+
"bdev=sda3\0"
720719

721720
#define CONFIG_HDBOOT \
722721
"setenv bootargs root=/dev/$bdev rw " \

0 commit comments

Comments
 (0)