Skip to content

Commit b42b918

Browse files
committed
ARM: OMAP2+: Remove board-omap4panda.c
We can now boot with device tree. If you don't want to update u-boot, you can boot with appended DTB with the following instructions: 1. Make sure you have the appended DTB support in .config CONFIG_ARM_APPENDED_DTB=y CONFIG_ARM_ATAG_DTB_COMPAT=y CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND=y 2. Build the zImage $ ARCH=arm CROSS_COMPILE=... make zImage 3. Build the device tree blobs $ ARCH=arm CROSS_COMPILE=... make dtbs 4. Append the correct panda dtb to zImage Depending on your hardware it's omap4-panda.dtb, omap4-panda-a4.dtb or omap4-panda-es.dtb. $ cat arch/arm/boot/zImage arch/arm/boot/dts/omap4-panda-es.dtb > /tmp/appended 5. Use mkimage to produce the appended device tree uImage $ mkimage -A arm -O linux -T kernel -C none -a 0x80008000 -e 0x80008000 \ -n "Linux" -d /tmp/appended /tmp/uImage Signed-off-by: Tony Lindgren <[email protected]
1 parent 76787b3 commit b42b918

File tree

3 files changed

+0
-464
lines changed

3 files changed

+0
-464
lines changed

arch/arm/mach-omap2/Kconfig

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -378,14 +378,6 @@ config MACH_TI8148EVM
378378
depends on SOC_TI81XX
379379
default y
380380

381-
config MACH_OMAP4_PANDA
382-
bool "OMAP4 Panda Board"
383-
default y
384-
depends on ARCH_OMAP4
385-
select OMAP_PACKAGE_CBL
386-
select OMAP_PACKAGE_CBS
387-
select REGULATOR_FIXED_VOLTAGE if REGULATOR
388-
389381
config OMAP3_EMU
390382
bool "OMAP3 debugging peripherals"
391383
depends on ARCH_OMAP3

arch/arm/mach-omap2/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ obj-$(CONFIG_MACH_CM_T35) += board-cm-t35.o
251251
obj-$(CONFIG_MACH_CM_T3517) += board-cm-t3517.o
252252
obj-$(CONFIG_MACH_IGEP0020) += board-igep0020.o
253253
obj-$(CONFIG_MACH_TOUCHBOOK) += board-omap3touchbook.o
254-
obj-$(CONFIG_MACH_OMAP4_PANDA) += board-omap4panda.o
255254

256255
obj-$(CONFIG_MACH_OMAP3517EVM) += board-am3517evm.o
257256

0 commit comments

Comments
 (0)