]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
karo: tx53: various fixes for CONFIG_SECURE_BOOT
authorLothar Waßmann <LW@KARO-electronics.de>
Thu, 30 Jun 2016 08:44:39 +0000 (10:44 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 30 Jun 2016 08:44:39 +0000 (10:44 +0200)
board/karo/tx53/config.mk
board/karo/tx53/lowlevel_init.S
board/karo/tx53/u-boot.lds

index 09d6709dfea90bb405122eed42ad42d4effc4a73..55eb15e5c428b9aede69b2c8467c2f763cdc1ec3 100644 (file)
@@ -2,6 +2,12 @@
 CONFIG_SYS_TEXT_BASE := 0x700ff000
 
 __HAVE_ARCH_GENERIC_BOARD := y
+
 PLATFORM_CPPFLAGS += -Werror
+ifneq ($(CONFIG_SECURE_BOOT),)
+#      promote config variable to linker script
+       PLATFORM_CPPFLAGS += -DCONFIG_SECURE_BOOT
+endif
+
 LOGO_BMP = logos/karo.bmp
 OBJCOPYFLAGS += -j .pad
index ad43e481ac8cf7711cbf3daf5906c704055f7c0f..5aa31af63d64764bbd53d30ed284432a6fe562f6 100644 (file)
@@ -382,7 +382,11 @@ boot_data_ptr:
 self_ptr:
        .word   ivt_header
 app_code_csf:
+#ifdef CONFIG_SECURE_BOOT
        .word   __csf_data
+#else
+       .word   0x0
+#endif
        .word   0x0
 boot_data:
        .long   CONFIG_SYS_TEXT_BASE
index 392a9ef42a5027b08dd0d16e37b01cc716bf1b04..e010d99f533a82b5de24f89badb78080992ae895 100644 (file)
@@ -83,19 +83,18 @@ SECTIONS
                . = ALIGN(4096);
        } = 0x01f0adde
 
-       _image_binary_end = . + (__ivt_end - __uboot_img_start);
-
        .uboot_img_end :
        {
                KEEP(*(.__uboot_img_end))
        }
 
-       . = CONFIG_SYS_TEXT_BASE + 0x70000;
+#ifdef CONFIG_SECURE_BOOT
        .csf_data :
        {
                *(.__csf_data)
                . = . + 0x2000;
        }
+#endif
        __uboot_img_len = . - __uboot_img_start;
 
 /*
@@ -117,7 +116,6 @@ SECTIONS
                KEEP(*(.__bss_end));
        }
 
-       .dynsym _image_binary_end : { *(.dynsym) }
        /DISCARD/ : { *(.debug*) }
        /DISCARD/ : { *(.note*) }
        /DISCARD/ : { *(.comment*) }