{"commit":"a01a3734f81c2cbc1bebe517c8a17929248c07f6","old_file":"nrf5\/boards\/nrf52832_512k_64k_s132.ld","new_file":"nrf5\/boards\/nrf52832_512k_64k_s132.ld","old_contents":"\/*\n GNU linker script for NRF52 w\/ s132 3.0.0 SoftDevice\n*\/\n\n\/* Specify the memory areas *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x080000 \/* entire flash, 512 KiB *\/\n FLASH_ISR (rx) : ORIGIN = 0x0001f000, LENGTH = 0x001000 \/* sector 0, 4 KiB *\/\n FLASH_TEXT (rx) : ORIGIN = 0x00020000, LENGTH = 0x060000 \/* 396 KiB *\/\n RAM (xrw) : ORIGIN = 0x200039c0, LENGTH = 0x0c640 \/* 49.5 KiB, give 8KiB headroom for softdevice *\/\n}\n \n\/* produce a link error if there is not this amount of RAM for these sections *\/\n_minimum_stack_size = 2K;\n_minimum_heap_size = 16K;\n \n\/* top end of the stack *\/\n\n\/*_stack_end = ORIGIN(RAM) + LENGTH(RAM);*\/\n_estack = ORIGIN(RAM) + LENGTH(RAM);\n\n\/* RAM extents for the garbage collector *\/\n_ram_end = ORIGIN(RAM) + LENGTH(RAM);\n_heap_end = 0x20005000; \/* tunable *\/\n\nINCLUDE \"boards\/common.ld\"\n","new_contents":"\/*\n GNU linker script for NRF52 w\/ s132 3.0.0 SoftDevice\n*\/\n\n\/* Specify the memory areas *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 0x080000 \/* entire flash, 512 KiB *\/\n FLASH_ISR (rx) : ORIGIN = 0x0001f000, LENGTH = 0x001000 \/* sector 0, 4 KiB *\/\n FLASH_TEXT (rx) : ORIGIN = 0x00020000, LENGTH = 0x060000 \/* 396 KiB *\/\n RAM (xrw) : ORIGIN = 0x200039c0, LENGTH = 0x0c640 \/* 49.5 KiB, give 8KiB headroom for softdevice *\/\n}\n \n\/* produce a link error if there is not this amount of RAM for these sections *\/\n_minimum_stack_size = 2K;\n_minimum_heap_size = 16K;\n \n\/* top end of the stack *\/\n\n\/*_stack_end = ORIGIN(RAM) + LENGTH(RAM);*\/\n_estack = ORIGIN(RAM) + LENGTH(RAM);\n\n\/* RAM extents for the garbage collector *\/\n_ram_end = ORIGIN(RAM) + LENGTH(RAM);\n_heap_end = 0x20006000; \/* tunable *\/\n\nINCLUDE \"boards\/common.ld\"\n","subject":"Adjust heap end after increased .data usage in nrf52832 s132 linker script.","message":"nrf5\/boards: Adjust heap end after increased .data usage in nrf52832 s132 linker script.\n","lang":"Linker Script","license":"mit","repos":"adafruit\/circuitpython,adafruit\/micropython,adafruit\/micropython,adafruit\/circuitpython,adafruit\/micropython,adafruit\/micropython,adafruit\/micropython,tralamazza\/micropython,tralamazza\/micropython,adafruit\/circuitpython,adafruit\/circuitpython,adafruit\/circuitpython,tralamazza\/micropython,adafruit\/circuitpython,tralamazza\/micropython"} {"commit":"ab55b72f949bb4195356f4c87e75fdc9adb0c5d4","old_file":"kernel\/linker.ld","new_file":"kernel\/linker.ld","old_contents":"OUTPUT_FORMAT(\"elf32-i386\")\nENTRY(_start)\nphys = 0x100000;\n\nSECTIONS\n{\n .text phys : AT(phys)\n {\n text = .;\n *(.multiboot)\n *(.text)\n . = ALIGN(4K);\n }\n\n .rodata : AT(phys + (rodata - text))\n {\n rodata = .;\n *(.rodata*)\n . = ALIGN(4K);\n }\n\n .data : AT(phys + (data - text))\n {\n data = .;\n *(.data)\n . = ALIGN(4K);\n }\n\n .bss : AT(phys + (bss - text))\n {\n bss = .;\n *(COMMON)\n *(.bss)\n *(.stack)\n . = ALIGN(4K);\n }\n\n kernels_end = .;\n}\n\n","new_contents":"OUTPUT_FORMAT(\"elf32-i386\")\nENTRY(_start)\nphys = 0x100000;\n\nSECTIONS\n{\n .text phys : AT(phys)\n {\n text = .;\n *(.multiboot)\n *(.text)\n *(.rodata*)\n . = ALIGN(4K);\n }\n\n .data : AT(phys + (data - text))\n {\n data = .;\n *(.data)\n . = ALIGN(4K);\n }\n\n .bss : AT(phys + (bss - text))\n {\n bss = .;\n *(COMMON)\n *(.bss)\n *(.stack)\n . = ALIGN(4K);\n }\n\n kernels_end = .;\n}\n\n","subject":"Make .rodata be included in .text","message":"Make .rodata be included in .text\n","lang":"Linker Script","license":"bsd-3-clause","repos":"semahawk\/leoman,semahawk\/figh,semahawk\/kernel"} {"commit":"0dcfbdf6441b7ae50ed557ae41078dc326682bc8","old_file":"targets\/stm32\/console-test_custom.ld","new_file":"targets\/stm32\/console-test_custom.ld","old_contents":"\/* Update the linker script with rules for custom sections *\/\nSECTIONS\n{\n .text :\n {\n . = ALIGN(4);\n __start_command_section = .;\n *(.command_section)\n __stop_command_section = .;\n } >FLASH\n}\n","new_contents":"\/* Update the linker script with rules for custom sections *\/\nSECTIONS\n{\n .text :\n {\n . = ALIGN(4);\n __start_command_section = .;\n *(command_section)\n __stop_command_section = .;\n } >FLASH\n}\n","subject":"Fix command section name for STM32 targets","message":"Fix command section name for STM32 targets\n","lang":"Linker Script","license":"mit","repos":"w5292c\/mcode,w5292c\/mcode,w5292c\/mcode"} {"commit":"ebc6bd1606b0abac16f939f78df64173bb8c15e4","old_file":"hw\/bsp\/stm32f3discovery\/stm32f3discovery.ld","new_file":"hw\/bsp\/stm32f3discovery\/stm32f3discovery.ld","old_contents":"\/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n * \n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\nENTRY(Reset_Handler)\n\n\/*\n * Memory map\n *\/\nMEMORY {\n FLASH (rx): ORIGIN = 0x08004000, LENGTH = 240K\n CCRAM (rw): ORIGIN = 0x10000000, LENGTH = 8K\n SRAM (rw): ORIGIN = 0x20000000, LENGTH = 40K\n}\n\/*\n * Image header size - no bootloader support, no header.\n *\/\n_imghdr_size = 0x20;\n","new_contents":"\/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n * \n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\nENTRY(Reset_Handler)\n\n\/*\n * Memory map\n *\/\nMEMORY {\n FLASH (rx): ORIGIN = 0x08004000, LENGTH = 88K\n CCRAM (rw): ORIGIN = 0x10000000, LENGTH = 8K\n SRAM (rw): ORIGIN = 0x20000000, LENGTH = 40K\n}\n\/*\n * Image header size - no bootloader support, no header.\n *\/\n_imghdr_size = 0x20;\n","subject":"Fix slot0 size in f3disco to avoid writing after end","message":"Fix slot0 size in f3disco to avoid writing after end\n\nSigned-off-by: Fabio Utzig <66676b1ceaf93296e098708c09494361103aa635@apache.org>\n","lang":"Linker Script","license":"apache-2.0","repos":"mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core"} {"commit":"11431193dbd664e96a2ce2e3a8f5ec7c705889be","old_file":"link.meson.ld","new_file":"link.meson.ld","old_contents":"ENTRY(_Reset)\nSECTIONS\n{\n . = 0x10000;\n .startup . : { testit*exe\/startup.S.o(.text) }\n .text : { *(.text) }\n .data : { *(.data) }\n .bss : { *(.bss COMMON) }\n . = ALIGN(8);\n . = . + 0x1000; \/* 4kB stack *\/\n stack_top = .;\n}\n","new_contents":"\nENTRY(_Reset)\nSECTIONS\n{\n . = 0x10000;\n \/* TODO: fix meson naming scheme so there its something other\n * than testit@exe as the linker script doesn't like '@' *\/\n .startup . : { testit?exe\/startup.S.o(.text) }\n .text : { *(.text) }\n .data : { *(.data) }\n .bss : { *(.bss COMMON) }\n . = ALIGN(8);\n . = . + 0x1000; \/* 4kB stack *\/\n stack_top = .;\n}\n","subject":"Use question mark instead of asterisk in path for startup.S.o.","message":"Use question mark instead of asterisk in path for startup.S.o.\n\nJussi use asterisk but he suggested question mark is marginally better\nas it would match less possibilities. Long term the use of the '@' in\nmeson needs to be fixed see [issue #24](https:\/\/github.com\/mesonbuild\/meson\/issues\/294)\n","lang":"Linker Script","license":"bsd-2-clause","repos":"winksaville\/baremetal-hi,winksaville\/baremetal-hi"} {"commit":"8c6d2365d71724997c43aa4797c8e3722da7e392","old_file":"cortex_m4.ld","new_file":"cortex_m4.ld","old_contents":"# This Source Code Form is subject to the terms of the Mozilla Public\n# License, v. 2.0. If a copy of the MPL was not distributed with this\n# file, You can obtain one at http:\/\/mozilla.org\/MPL\/2.0\/.\n\nENTRY(interrupt_reset)\n\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x0000000, LENGTH = 0x80000\n STACK (rw): ORIGIN = 0x20004FFC, LENGTH = 0K\n RAM (rw) : ORIGIN = 0x20010000, LENGTH = 0x10000\n}\n \nSECTIONS\n{\n .text :\n {\n KEEP(*(.vector_table))\n *(.text)\n } >FLASH\n \n .stack :\n {\n _STACK_HEAD = .;\n } >STACK\n} \n","new_contents":"ENTRY(interrupt_reset)\n\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x0000000, LENGTH = 0x80000\n STACK (rw): ORIGIN = 0x20004FFC, LENGTH = 0K\n RAM (rw) : ORIGIN = 0x20010000, LENGTH = 0x10000\n}\n \nSECTIONS\n{\n .text :\n {\n KEEP(*(.vector_table))\n *(.text)\n } >FLASH\n \n .stack :\n {\n _STACK_HEAD = .;\n } >STACK\n} \n","subject":"Remove license header form linker script","message":"Remove license header form linker script\n\nSigned-off-by: Tomasz Jankowski <503a486186d52d88001783868db1a06ad09e4157@gmail.com>\n","lang":"Linker Script","license":"mpl-2.0","repos":"goofacz\/cortex-m-minimal-c,goofacz\/cortex-m-minimal-c"} {"commit":"f470efa1134733a1a3f9dfaa3d8b24aff40600c6","old_file":"orex.ld","new_file":"orex.ld","old_contents":"ENTRY (main)\n\nMEMORY\n{\n\tram : ORIGIN = 0x00218000, LENGTH = 29M\n\trom : ORIGIN = 0x60000000, LENGTH = 8M\n}\n\nSECTIONS\n{\n\t.data : \/* Initialized data. *\/\n\t{\n\t\t_DataStart = . ;\n\t\t*(.data)\n\t\t_DataEnd = . ;\n\t} >ram\n\n\t.bss : \/* Uninitialized data. *\/\n\t{\n\t\t_BssStart = . ;\n\t\t*(.bss)\n\t\t_BssEnd = . ;\n\t} >ram\n\n\t.text : \/* The actual instructions. *\/\n\t{\n\t\t*(.text)\n\t\t*(.got)\n\t\t*(.got.plt)\n\t\t*(.rodata)\n\t\t*(.rodata.str1.4)\n\t\t*(.glue_7)\n\t\t*(.glue_7t)\n\t} >ram\n}\n","new_contents":"ENTRY (main)\n\nMEMORY\n{\n\tram : ORIGIN = 0x00218000, LENGTH = 29M\n\trom : ORIGIN = 0x60000000, LENGTH = 8M\n}\n\nSECTIONS\n{\n\t.data : \/* Initialized data. *\/\n\t{\n\t\t_DataStart = . ;\n\t\t*(.data)\n\t\t_DataEnd = . ;\n\t} >ram\n\n\t.bss : \/* Uninitialized data. *\/\n\t{\n\t\t_BssStart = . ;\n\t\t*(.bss)\n\t\t*(.sbss)\n\t\t_BssEnd = . ;\n\t} >ram\n\n\t.text : \/* The actual instructions. *\/\n\t{\n\t\t*(.text)\n\t\t*(.got)\n\t\t*(.got.plt)\n\t\t*(.rodata)\n\t\t*(.rodata.str1.4)\n\t\t*(.glue_7)\n\t\t*(.glue_7t)\n\t} >ram\n}\n","subject":"Add an sbss section to the linker script","message":"Add an sbss section to the linker script","lang":"Linker Script","license":"mit","repos":"ferrous26\/cs452-flaming-meme,ferrous26\/cs452-flaming-meme,ferrous26\/cs452-flaming-meme"} {"commit":"10480b0e537df0b9d429db3ceb58215dbe579ce6","old_file":"template\/gcc_nrf51_s110.ld","new_file":"template\/gcc_nrf51_s110.ld","old_contents":"\/* Linker script to configure memory regions. *\/\r\nMEMORY\r\n{\r\n FLASH (rx) : ORIGIN = 0x14000, LENGTH = 0x26000 \/* 128k, 128k is taken by S110 *\/\r\n RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000 \/* 8k, 8k is taken by S110 *\/\r\n}\r\nINCLUDE \"gcc_nrf51_common.ld\"\r\n","new_contents":"\/* Linker script to configure memory regions. *\/\r\nMEMORY\r\n{\r\n FLASH (rx) : ORIGIN = 0x14000, LENGTH = 0x26000 \/* 80 kB is taken by S110, 176 kB for app. *\/\r\n RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000 \/* 8 kB is taken by S110,8 kB for app. *\/\r\n}\r\nINCLUDE \"gcc_nrf51_common.ld\"\r\n","subject":"Fix comments in S110 linker script.","message":"Fix comments in S110 linker script.\n","lang":"Linker Script","license":"bsd-3-clause","repos":"jf87\/nrf51-pure-gcc-setup"} {"commit":"314aa755ed3af01dc42d77587752a32a883972ed","old_file":"src\/Vulkan\/android_vk_swiftshader.lds","new_file":"src\/Vulkan\/android_vk_swiftshader.lds","old_contents":"# For Android, we must not export anything other than loader-related API\n{\nglobal:\n\tvkGetInstanceProcAddr;\n\n\t# Loader-ICD interface functions\n\tvk_icdGetInstanceProcAddr;\n\tvk_icdNegotiateLoaderICDInterfaceVersion;\n\n\t# Android HAL module info object\n\tHMI;\n\nlocal:\n\t*;\n};\n\n","new_contents":"# For Android, we must not export anything other than loader-related API\n{\nglobal:\n\t# Loader-ICD interface functions\n\tvk_icdGetInstanceProcAddr;\n\tvk_icdNegotiateLoaderICDInterfaceVersion;\n\n\t# Android HAL module info object\n\tHMI;\n\nlocal:\n\t*;\n};\n\n","subject":"Remove vkGetInstanceProcAddr from exported symbols on Android","message":"Remove vkGetInstanceProcAddr from exported symbols on Android\n\nAndroid only allows access to the ICD's functions, through the Vulkan\nLoader interface functions.\n\nThis was causing direct access to vkGetPhysicalDeviceSurfaceFormatsKHR,\nwhile Android's libvulkan must override it to provide an implementation\nbased on AHardwareBuffer, which affects things like wide-gamut support.\n\nBug: b\/182576189\nBug: b\/148822450\nChange-Id: I64fd5a601f92beca186696d2cd09eee1a09b8ce9\nReviewed-on: https:\/\/swiftshader-review.googlesource.com\/c\/SwiftShader\/+\/53608\nReviewed-by: Jason Macnak <76caa58940b8c6785e996f522e85b625ac7c7baa@google.com>\nReviewed-by: Chris Forbes \nTested-by: Nicolas Capens <51edc787c30f24c4904e8ffbb5523c3a9f7a451d@google.com>\n","lang":"Linker Script","license":"apache-2.0","repos":"bkaradzic\/SwiftShader,google\/swiftshader,bkaradzic\/SwiftShader,google\/swiftshader,google\/swiftshader,bkaradzic\/SwiftShader,bkaradzic\/SwiftShader,bkaradzic\/SwiftShader"} {"commit":"97d46143e282dd639ab0c6b05f05d52b5526f21b","old_file":"buildsystem\/linker.ld","new_file":"buildsystem\/linker.ld","old_contents":"OUTPUT_FORMAT(\"elf64-x86-64\") \/* FLAT BINARY DOES NOT WORK, ELF WORKS *\/\nENTRY(start)\n\nSECTIONS {\n . = 0x0000000000010000;\n\n .entry :\n {\n \/* ensure that the kernel entry code is at the beginning *\/\n *(.entry)\n }\n .text : ALIGN(0x1000)\n {\n *(.text .text.*)\n }\n .rodata : ALIGN(0x1000)\n {\n *(.rodata .rodata.*)\n }\n\n .data : ALIGN(0x1000)\n {\n *(.data .data.*)\n }\n\n .data.rel.ro : ALIGN(0x1000)\n {\n *(.data.rel.ro.local*) *(.data.rel.ro .data.rel.ro.*)\n }\n}\n","new_contents":"OUTPUT_FORMAT(\"elf64-x86-64\") \/* FLAT BINARY DOES NOT WORK, ELF WORKS *\/\nENTRY(start)\n\nSECTIONS {\n . = 0x0000000000010000;\n\n .entry :\n {\n \/* ensure that the kernel entry code is at the beginning *\/\n *(.entry)\n }\n .text : ALIGN(0x200)\n {\n *(.text .text.*)\n }\n .rodata : ALIGN(0x200)\n {\n *(.rodata .rodata.*)\n }\n\n .data : ALIGN(0x200)\n {\n *(.data .data.*)\n }\n\n .data.rel.ro : ALIGN(0x200)\n {\n *(.data.rel.ro.local*) *(.data.rel.ro .data.rel.ro.*)\n }\n}\n","subject":"Reduce binary size by cutting aligments","message":"Reduce binary size by cutting aligments\n","lang":"Linker Script","license":"mit","repos":"Dentosal\/rust_os,Dentosal\/rust_os,Dentosal\/rust_os"} {"commit":"771f71e3513d2c4688c027b0def54c8042a50bc8","old_file":"template\/gcc_nrf51_s210.ld","new_file":"template\/gcc_nrf51_s210.ld","old_contents":"\/* Linker script to configure memory regions. *\/\r\nMEMORY\r\n{\r\n FLASH (rx) : ORIGIN = 0xA000, LENGTH = 0x36000 \/* 128k, 128k is taken by S110 *\/\r\n RAM (rwx) : ORIGIN = 0x20000800, LENGTH = 0x3800 \/* 8k, 8k is taken by S110 *\/\r\n}\r\nINCLUDE \"gcc_nrf51_common.ld\"\r\n","new_contents":"\/* Linker script to configure memory regions. *\/\r\nMEMORY\r\n{\r\n FLASH (rx) : ORIGIN = 0xC000, LENGTH = 0x34000 \/* 48 kB is taken by S210, 80 kB for app. *\/\r\n RAM (rwx) : ORIGIN = 0x20000900, LENGTH = 0x3700 \/* 2.25 kB is taken by S210, 13.75 kB for app. *\/\r\n}\r\nINCLUDE \"gcc_nrf51_common.ld\"\r\n","subject":"Update S210 linker script for S210 3.0.0.","message":"Update S210 linker script for S210 3.0.0.\n","lang":"Linker Script","license":"bsd-3-clause","repos":"jf87\/nrf51-pure-gcc-setup"} {"commit":"b0d73a252286788107aabb7941960443a525c2a2","old_file":"hw\/bsp\/stm32f7discovery\/boot-stm32f7discovery.ld","new_file":"hw\/bsp\/stm32f7discovery\/boot-stm32f7discovery.ld","old_contents":"\/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\n\n\/* Linker script to configure memory regions. *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 32K\n ITCM (rx) : ORIGIN = 0x00000000, LENGTH = 16K\n DTCM (rwx) : ORIGIN = 0x20000000, LENGTH = 128K\n RAM (rwx) : ORIGIN = 0x20020000, LENGTH = 512K\n}\n\n\/* The bootloader does not contain an image header *\/\n_imghdr_size = 0x0;\n","new_contents":"\/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\n\n\/* Linker script to configure memory regions. *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 32K \/* FLASHAXI_BASE *\/\n ITCM (rx) : ORIGIN = 0x00000000, LENGTH = 16K \/* RAMITCM_BASE *\/\n DTCM (rwx) : ORIGIN = 0x20000000, LENGTH = 64K \/* RAMDTCM_BASE *\/\n RAM (rwx) : ORIGIN = 0x20020000, LENGTH = 256K \/* SRAM1_BASE *\/\n}\n\n\/* The bootloader does not contain an image header *\/\n_imghdr_size = 0x0;\n","subject":"Add comments to boot linker script.","message":"Add comments to boot linker script.\n","lang":"Linker Script","license":"apache-2.0","repos":"IMGJulian\/incubator-mynewt-core,IMGJulian\/incubator-mynewt-core,IMGJulian\/incubator-mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,IMGJulian\/incubator-mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,mlaz\/mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,mlaz\/mynewt-core,IMGJulian\/incubator-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,mlaz\/mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core"} {"commit":"bb11776e30a9f97ca807aa38a6eeeba5a7192f44","old_file":"lib\/libcee-syslog.ld","new_file":"lib\/libcee-syslog.ld","old_contents":"LIBCEE_SYSLOG_0.1.0 {\n\tglobal:\n # Our own symbols\n cee_format;\n cee_vformat;\n cee_syslog;\n cee_vsyslog;\n cee_legacy_syslog;\n cee_legacy_vsyslog;\n cee_openlog;\n cee_setlogmask;\n # Overrides\n syslog;\n vsyslog;\n openlog;\n setlogmask;\n};\n","new_contents":"LIBCEE_SYSLOG_0.1.0 {\n\tglobal:\n # Our own symbols\n cee_format;\n cee_vformat;\n cee_syslog;\n cee_vsyslog;\n cee_legacy_syslog;\n cee_legacy_vsyslog;\n cee_openlog;\n cee_setlogmask;\n # Overrides\n syslog;\n vsyslog;\n openlog;\n setlogmask;\n\n\tlocal:\n # Inherited from elsewhere, but should not be exported\n facilitynames;\n prioritynames;\n};\n","subject":"Hide two inherited symbols with the version script.","message":"Hide two inherited symbols with the version script.\n\nWe inherit facilitynames and prioritynames from syslog.h, but they\nshould not be exported by us.\n\nSigned-off-by: Gergely Nagy <6780fac3b38619ac20422286e4110a70dbba2203@balabit.hu>\n","lang":"Linker Script","license":"bsd-2-clause","repos":"deirf\/libumberlog"} {"commit":"55967c433d9891cd21cac745c037ac38f9df3088","old_file":"hw\/bsp\/stm32f4discovery\/boot-stm32f4discovery.ld","new_file":"hw\/bsp\/stm32f4discovery\/boot-stm32f4discovery.ld","old_contents":"\/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\n\n\/* Linker script to configure memory regions. *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 32K\n CCM (rwx) : ORIGIN = 0x10000000, LENGTH = 64K\n RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 128K\n}\n\n\/* The bootloader does not contain an image header *\/\n_imghdr_size = 0x0;\n","new_contents":"\/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\n\n\/* Linker script to configure memory regions. *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 16K\n CCM (rwx) : ORIGIN = 0x10000000, LENGTH = 64K\n RAM (rwx) : ORIGIN = 0x20000000, LENGTH = 128K\n}\n\n\/* The bootloader does not contain an image header *\/\n_imghdr_size = 0x0;\n","subject":"Fix linker script's boot size to match bsp.yml","message":"Fix linker script's boot size to match bsp.yml\n","lang":"Linker Script","license":"apache-2.0","repos":"andrzej-kaczmarek\/apache-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,andrzej-kaczmarek\/incubator-mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,mlaz\/mynewt-core,andrzej-kaczmarek\/apache-mynewt-core,mlaz\/mynewt-core"} {"commit":"96facde2d5b04577ab41caa30bf6549dc7a64276","old_file":"orex.ld","new_file":"orex.ld","old_contents":"ENTRY (main)\n\nMEMORY\n{\n\tram : ORIGIN = 0x00218000, LENGTH = 29M\n\trom : ORIGIN = 0x60000000, LENGTH = 8M\n}\n\nSECTIONS\n{\n\tdata : \/* Initialized data. *\/\n\t{\n\t\t_DataStart = . ;\n\t\t*(.data)\n\t\t_DataEnd = . ;\n\t} >ram\n\n\tbss : \/* Uninitialized data. *\/\n\t{\n\t\t_BssStart = . ;\n\t\t*(.bss)\n\t\t_BssEnd = . ;\n\t} >ram\n\n\ttext : \/* The actual instructions. *\/\n\t{\n\t\t*(.text)\n\t\t*(.got)\n\t\t*(.got.plt)\n\t\t*(.rodata)\n\t\t*(.rodata.str1.4)\n\t\t*(.glue_7)\n\t\t*(.glue_7t)\n\t} >ram\n}\n","new_contents":"ENTRY (main)\n\nMEMORY\n{\n\tram : ORIGIN = 0x00218000, LENGTH = 29M\n\trom : ORIGIN = 0x60000000, LENGTH = 8M\n}\n\nSECTIONS\n{\n\t.data : \/* Initialized data. *\/\n\t{\n\t\t_DataStart = . ;\n\t\t*(.data)\n\t\t_DataEnd = . ;\n\t} >ram\n\n\t.bss : \/* Uninitialized data. *\/\n\t{\n\t\t_BssStart = . ;\n\t\t*(.bss)\n\t\t_BssEnd = . ;\n\t} >ram\n\n\t.text : \/* The actual instructions. *\/\n\t{\n\t\t*(.text)\n\t\t*(.got)\n\t\t*(.got.plt)\n\t\t*(.rodata)\n\t\t*(.rodata.str1.4)\n\t\t*(.glue_7)\n\t\t*(.glue_7t)\n\t} >ram\n}\n","subject":"Fix bullshit in the linker script","message":"Fix bullshit in the linker script\n\nThe “ld: error: no memory region specified for loadable section `.bss’”\nproblem was literally because the section was misnamed in the script.\n\nAnd guess what, if we fix .data as well then static variable initialization\nactually works. Hooray for another class-wide misdiagnosis…","lang":"Linker Script","license":"mit","repos":"ferrous26\/cs452-flaming-meme,ferrous26\/cs452-flaming-meme,ferrous26\/cs452-flaming-meme"} {"commit":"f9bcf3940c1198416fde539b19e386629ab69821","old_file":"stm32f1-nrf24l01-transmitter\/firmware\/stm32f103c8t6.ld","new_file":"stm32f1-nrf24l01-transmitter\/firmware\/stm32f103c8t6.ld","old_contents":"\/* Linker script for AliExpress STM32F103 board (STM32F103C8T6, 64K flash, 20K RAM). *\/\n\nMEMORY\n{\n\trom (rx) : ORIGIN = 0x08000000, LENGTH = 64K\n\tram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K\n}\n\nINCLUDE libopencm3_stm32f1.ld\n","new_contents":"\/* Linker script for AliExpress STM32F103 board (STM32F103C8T6, 64K flash, 20K RAM). *\/\n\nMEMORY\n{\n\trom (rx) : ORIGIN = 0x08000000, LENGTH = 64K\n\tram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K\n}\n\n\n\/* Put the transmitter configuration in the upper-most 8 KBytes of flash *\/\nSECTIONS\n{\n .transmitter_configuration 0x0800e000 :\n {\n *(.rodata.config_flash)\n }\n}\n\n\nINCLUDE libopencm3_stm32f1.ld\n\n\n","subject":"Put config_flash into fixed memory at 0x0800e000","message":"Put config_flash into fixed memory at 0x0800e000\n","lang":"Linker Script","license":"unlicense","repos":"laneboysrc\/nrf24l01-rc,laneboysrc\/nrf24l01-rc,laneboysrc\/nrf24l01-rc"} {"commit":"51df685350b1ccc9a16974230a18805e7259c180","old_file":"klipos\/hw\/mcu\/lpc15xx\/lpc1549.ld","new_file":"klipos\/hw\/mcu\/lpc15xx\/lpc1549.ld","old_contents":"\/*\n * generic gcc linker script for LPC1549\n * Taken from Kamal Mostafa .\n *\n * License: Public Domain\n *\/\n\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 256K \n RAM (rwx) : ORIGIN = 0x02000000, LENGTH = 16K\n RAM1 (rwx) : ORIGIN = 0x02004000, LENGTH = 16K\n RAM2 (rwx) : ORIGIN = 0x02008000, LENGTH = 4K\n}\n\nSECTIONS\n{\n .text :\n {\n _text = .;\n KEEP(*(.isr_vector))\n KEEP(*(.after_vectors))\n *(.text*)\n *(.rodata*)\n _etext = .;\n } > FLASH\n\n .data : AT (ADDR(.text) + SIZEOF(.text))\n {\n __stack_start__ = .; \/* start of the stack section *\/\n KEEP(*(.stack))\n . = ALIGN(4);\n __stack_end__ = .; \/* end of the stack section *\/\n\n _data = .;\n *(vtable)\n *(.data*)\n _edata = .;\n } > RAM\n\n .bss :\n {\n _bss = .;\n *(.bss*)\n *(COMMON)\n _ebss = .;\n } > RAM\n\n}\n","new_contents":"\/*\n * generic gcc linker script for LPC1549\n * Taken from Kamal Mostafa .\n *\n * License: Public Domain\n *\/\n\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x00000000, LENGTH = 256K \n RAM (rwx) : ORIGIN = 0x02000000, LENGTH = 16K\n RAM1 (rwx) : ORIGIN = 0x02004000, LENGTH = 16K\n RAM2 (rwx) : ORIGIN = 0x02008000, LENGTH = 4K\n}\n\nSECTIONS\n{\n .text :\n {\n _text = .;\n KEEP(*(.isr_vector))\n KEEP(*(.after_vectors))\n *(.text*)\n *(.rodata*)\n _etext = .;\n } > FLASH\n\n .data : \n {\n __stack_start__ = .; \/* start of the stack section *\/\n KEEP(*(.stack))\n . = ALIGN(4);\n __stack_end__ = .; \/* end of the stack section *\/\n\n _data = .;\n *(vtable)\n *(.data*)\n _edata = .;\n } > RAM AT > FLASH\n\n .bss :\n {\n _bss = .;\n *(.bss*)\n *(COMMON)\n _ebss = .;\n } > RAM\n\n}\n","subject":"Fix bug with linker script","message":"Fix bug with linker script\n","lang":"Linker Script","license":"mit","repos":"batitous\/klipos,batitous\/klipos,batitous\/klipos"} {"commit":"da30dbea4af4fa92ecec3ee71b1442f2d8129ddb","old_file":"tools\/sdk\/ld\/eagle.flash.4m1m.ld","new_file":"tools\/sdk\/ld\/eagle.flash.4m1m.ld","old_contents":"\/* Flash Split for 4M chips *\/\n\/* sketch 1019KB *\/\n\/* spiffs 3052KB *\/\n\/* eeprom 20KB *\/\n\nMEMORY\n{\n dport0_0_seg : org = 0x3FF00000, len = 0x10\n dram0_0_seg : org = 0x3FFE8000, len = 0x14000\n iram1_0_seg : org = 0x40100000, len = 0x8000\n irom0_0_seg : org = 0x40201010, len = 0xfeff0\n}\n\nPROVIDE ( _SPIFFS_start = 0x40500000 );\nPROVIDE ( _SPIFFS_end = 0x405FB000 );\nPROVIDE ( _SPIFFS_page = 0x100 );\nPROVIDE ( _SPIFFS_block = 0x2000 );\n\nINCLUDE \"..\/ld\/eagle.app.v6.common.ld\"\n","new_contents":"\/* Flash Split for 4M chips *\/\n\/* sketch 1019KB *\/\n\/* empty 2048KB *\/\n\/* spiffs 1004KB *\/\n\/* eeprom 20KB *\/\n\nMEMORY\n{\n dport0_0_seg : org = 0x3FF00000, len = 0x10\n dram0_0_seg : org = 0x3FFE8000, len = 0x14000\n iram1_0_seg : org = 0x40100000, len = 0x8000\n irom0_0_seg : org = 0x40201010, len = 0xfeff0\n}\n\nPROVIDE ( _SPIFFS_start = 0x40500000 );\nPROVIDE ( _SPIFFS_end = 0x405FB000 );\nPROVIDE ( _SPIFFS_page = 0x100 );\nPROVIDE ( _SPIFFS_block = 0x2000 );\n\nINCLUDE \"..\/ld\/eagle.app.v6.common.ld\"\n","subject":"Fix comment in linker script","message":"Fix comment in linker script\n","lang":"Linker Script","license":"lgpl-2.1","repos":"me-no-dev\/Arduino,wemos\/Arduino,Juppit\/Arduino,Lan-Hekary\/Arduino,Cloudino\/Arduino,Cloudino\/Arduino,Links2004\/Arduino,Adam5Wu\/Arduino,NullMedia\/Arduino,Cloudino\/Arduino,chrisfraser\/Arduino,lrmoreno007\/Arduino,Links2004\/Arduino,KaloNK\/Arduino,me-no-dev\/Arduino,Cloudino\/Arduino,quertenmont\/Arduino,Cloudino\/Arduino,toastedcode\/esp8266-Arduino,jes\/Arduino,esp8266\/Arduino,Cloudino\/Cloudino-Arduino-IDE,Juppit\/Arduino,hallard\/Arduino,NullMedia\/Arduino,chrisfraser\/Arduino,jes\/Arduino,edog1973\/Arduino,chrisfraser\/Arduino,CanTireInnovations\/Arduino,hallard\/Arduino,Lan-Hekary\/Arduino,NullMedia\/Arduino,Links2004\/Arduino,Cloudino\/Cloudino-Arduino-IDE,lrmoreno007\/Arduino,NullMedia\/Arduino,NextDevBoard\/Arduino,gguuss\/Arduino,NextDevBoard\/Arduino,toastedcode\/esp8266-Arduino,Cloudino\/Arduino,Adam5Wu\/Arduino,martinayotte\/ESP8266-Arduino,Cloudino\/Cloudino-Arduino-IDE,martinayotte\/ESP8266-Arduino,wemos\/Arduino,CanTireInnovations\/Arduino,me-no-dev\/Arduino,gguuss\/Arduino,sticilface\/Arduino,CanTireInnovations\/Arduino,Links2004\/Arduino,quertenmont\/Arduino,sticilface\/Arduino,me-no-dev\/Arduino,hallard\/Arduino,sticilface\/Arduino,esp8266\/Arduino,edog1973\/Arduino,KaloNK\/Arduino,wemos\/Arduino,chrisfraser\/Arduino,martinayotte\/ESP8266-Arduino,Cloudino\/Cloudino-Arduino-IDE,wemos\/Arduino,NextDevBoard\/Arduino,esp8266\/Arduino,Adam5Wu\/Arduino,lrmoreno007\/Arduino,gguuss\/Arduino,sticilface\/Arduino,hallard\/Arduino,toastedcode\/esp8266-Arduino,chrisfraser\/Arduino,edog1973\/Arduino,KaloNK\/Arduino,edog1973\/Arduino,Lan-Hekary\/Arduino,jes\/Arduino,esp8266\/Arduino,toastedcode\/esp8266-Arduino,CanTireInnovations\/Arduino,lrmoreno007\/Arduino,gguuss\/Arduino,Cloudino\/Arduino,Adam5Wu\/Arduino,Cloudino\/Cloudino-Arduino-IDE,NextDevBoard\/Arduino,CanTireInnovations\/Arduino,Lan-Hekary\/Arduino,Juppit\/Arduino,gguuss\/Arduino,jes\/Arduino,Juppit\/Arduino,toastedcode\/esp8266-Arduino,martinayotte\/ESP8266-Arduino,Links2004\/Arduino,quertenmont\/Arduino,Cloudino\/Cloudino-Arduino-IDE,esp8266\/Arduino,hallard\/Arduino,Adam5Wu\/Arduino,edog1973\/Arduino,Juppit\/Arduino,martinayotte\/ESP8266-Arduino,wemos\/Arduino,KaloNK\/Arduino,quertenmont\/Arduino,NullMedia\/Arduino,jes\/Arduino,CanTireInnovations\/Arduino,NextDevBoard\/Arduino,sticilface\/Arduino,lrmoreno007\/Arduino,Lan-Hekary\/Arduino,CanTireInnovations\/Arduino,me-no-dev\/Arduino,quertenmont\/Arduino,KaloNK\/Arduino,Cloudino\/Cloudino-Arduino-IDE"} {"commit":"9ae85d4a59ee15795bfc34817fe15eb11ded9b36","old_file":"hardware\/esp8266com\/esp8266\/tools\/sdk\/ld\/eagle.flash.4m1m.ld","new_file":"hardware\/esp8266com\/esp8266\/tools\/sdk\/ld\/eagle.flash.4m1m.ld","old_contents":"\/* Flash Split for 4M chips *\/\n\/* sketch 1019KB *\/\n\/* spiffs 3052KB *\/\n\/* eeprom 20KB *\/\n\nMEMORY\n{\n dport0_0_seg : org = 0x3FF00000, len = 0x10\n dram0_0_seg : org = 0x3FFE8000, len = 0x14000\n iram1_0_seg : org = 0x40100000, len = 0x8000\n irom0_0_seg : org = 0x40201010, len = 0xfeff0\n}\n\nPROVIDE ( _SPIFFS_start = 0x40500000 );\nPROVIDE ( _SPIFFS_end = 0x405FB000 );\nPROVIDE ( _SPIFFS_page = 0x100 );\nPROVIDE ( _SPIFFS_block = 0x2000 );\n\nINCLUDE \"..\/ld\/eagle.app.v6.common.ld\"\n","new_contents":"\/* Flash Split for 4M chips *\/\n\/* sketch 1019KB *\/\n\/* empty 2048KB *\/\n\/* spiffs 1004KB *\/\n\/* eeprom 20KB *\/\n\nMEMORY\n{\n dport0_0_seg : org = 0x3FF00000, len = 0x10\n dram0_0_seg : org = 0x3FFE8000, len = 0x14000\n iram1_0_seg : org = 0x40100000, len = 0x8000\n irom0_0_seg : org = 0x40201010, len = 0xfeff0\n}\n\nPROVIDE ( _SPIFFS_start = 0x40500000 );\nPROVIDE ( _SPIFFS_end = 0x405FB000 );\nPROVIDE ( _SPIFFS_page = 0x100 );\nPROVIDE ( _SPIFFS_block = 0x2000 );\n\nINCLUDE \"..\/ld\/eagle.app.v6.common.ld\"\n","subject":"Fix comment in linker script","message":"Fix comment in linker script\n","lang":"Linker Script","license":"lgpl-2.1","repos":"drpjk\/Arduino,sanyaade-iot\/Arduino-1,weera00\/Arduino,myrtleTree33\/Arduino,spapadim\/Arduino,smily77\/Arduino,sanyaade-iot\/Arduino-1,eeijcea\/Arduino-1,mangelajo\/Arduino,paulmand3l\/Arduino,spapadim\/Arduino,weera00\/Arduino,ssvs111\/Arduino,gonium\/Arduino,drpjk\/Arduino,ogahara\/Arduino,zenmanenergy\/Arduino,gonium\/Arduino,ssvs111\/Arduino,myrtleTree33\/Arduino,mangelajo\/Arduino,paulmand3l\/Arduino,EmuxEvans\/Arduino,mangelajo\/Arduino,ssvs111\/Arduino,ogahara\/Arduino,ssvs111\/Arduino,ogahara\/Arduino,mateuszdw\/Arduino,zenmanenergy\/Arduino,smily77\/Arduino,ogahara\/Arduino,eeijcea\/Arduino-1,sanyaade-iot\/Arduino-1,myrtleTree33\/Arduino,paulmand3l\/Arduino,mateuszdw\/Arduino,smily77\/Arduino,sanyaade-iot\/Arduino-1,drpjk\/Arduino,gonium\/Arduino,zenmanenergy\/Arduino,ssvs111\/Arduino,weera00\/Arduino,ogahara\/Arduino,ogahara\/Arduino,gonium\/Arduino,myrtleTree33\/Arduino,EmuxEvans\/Arduino,mangelajo\/Arduino,drpjk\/Arduino,EmuxEvans\/Arduino,spapadim\/Arduino,EmuxEvans\/Arduino,mateuszdw\/Arduino,weera00\/Arduino,mangelajo\/Arduino,paulmand3l\/Arduino,weera00\/Arduino,gonium\/Arduino,mateuszdw\/Arduino,ssvs111\/Arduino,gonium\/Arduino,eeijcea\/Arduino-1,mateuszdw\/Arduino,smily77\/Arduino,zenmanenergy\/Arduino,smily77\/Arduino,smily77\/Arduino,smily77\/Arduino,spapadim\/Arduino,zenmanenergy\/Arduino,EmuxEvans\/Arduino,EmuxEvans\/Arduino,spapadim\/Arduino,ogahara\/Arduino,leftbrainstrain\/Arduino-ESP8266,sanyaade-iot\/Arduino-1,sanyaade-iot\/Arduino-1,leftbrainstrain\/Arduino-ESP8266,mangelajo\/Arduino,drpjk\/Arduino,EmuxEvans\/Arduino,drpjk\/Arduino,gonium\/Arduino,eeijcea\/Arduino-1,myrtleTree33\/Arduino,leftbrainstrain\/Arduino-ESP8266,myrtleTree33\/Arduino,zenmanenergy\/Arduino,paulmand3l\/Arduino,spapadim\/Arduino,ssvs111\/Arduino,eeijcea\/Arduino-1,mateuszdw\/Arduino,drpjk\/Arduino,eeijcea\/Arduino-1,weera00\/Arduino,mateuszdw\/Arduino,myrtleTree33\/Arduino,zenmanenergy\/Arduino,leftbrainstrain\/Arduino-ESP8266,spapadim\/Arduino,leftbrainstrain\/Arduino-ESP8266,sanyaade-iot\/Arduino-1,leftbrainstrain\/Arduino-ESP8266,paulmand3l\/Arduino,leftbrainstrain\/Arduino-ESP8266,weera00\/Arduino,paulmand3l\/Arduino,eeijcea\/Arduino-1,mangelajo\/Arduino"} {"commit":"64a7594ca3f5f9493a4909edefa4787948b87b68","old_file":"doc\/config.ld","new_file":"doc\/config.ld","old_contents":"add_language_extension(\"cpp\", \"c\")\nadd_language_extension(\"hpp\", \"c\")\nfile = {\"..\/src\/lib\/configure\", \"..\/src\/configure\"}\nproject = \"configure\"\npackage = \"configure\"\ndescription = \"Configure your projects' builds\"\none = false\nsort = true\nmerge = true\ntopics = {'..\/README.md'}\nkind_names = {topic = 'Manual',}\ntemplate = true\nstyle = true\nformat = 'discount'\n","new_contents":"add_language_extension(\"cpp\", \"c\")\nadd_language_extension(\"hpp\", \"c\")\nfile = {\"..\/src\/lib\/configure\", \"..\/src\/configure\"}\nproject = \"configure\"\npackage = \"configure\"\ndescription = \"Configure your projects' builds\"\none = false\nsort = true\nmerge = true\n--topics = {'..\/README.md'}\nreadme = '..\/README.md'\nkind_names = {topic = 'Manual',}\n-- template = true\n-- style = true\nformat = 'discount'\n","subject":"Disable custom template and style","message":"doc: Disable custom template and style\n","lang":"Linker Script","license":"bsd-3-clause","repos":"hotgloupi\/configure,hotgloupi\/configure,hotgloupi\/configure,hotgloupi\/configure,hotgloupi\/configure"} {"commit":"82672bf26dd3c0346b5821228eeac938fc057822","old_file":"firmware\/lpc812-nrf24l01-receiver\/receiver.ld","new_file":"firmware\/lpc812-nrf24l01-receiver\/receiver.ld","old_contents":"MEMORY\n{\n FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x4000 \/* 16K *\/\n RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 0x1000 \/* 4K *\/\n}\n\nSECTIONS\n{\n .vectors :\n {\n _text = .;\n KEEP(*(.isr_vector))\n . = ALIGN(4);\n } > FLASH\n\n\n .persistent_data :\n {\n . = ALIGN(64);\n KEEP(*(.persistent_data))\n . = ALIGN(64);\n } > FLASH\n\n\n .text :\n {\n KEEP(*(.after_vectors))\n *(.text*)\n *(.rodata*)\n . = ALIGN(4);\n _etext = .;\n } > FLASH\n\n\n .data : AT (_etext)\n {\n _data = .;\n *(.survivors) \/* 80 bytes that survive reset in LPC81x *\/\n *(.data*)\n . = ALIGN(4);\n _edata = .;\n } > RAM\n\n\n .bss :\n {\n _bss = .;\n *(.bss*)\n *(COMMON)\n . = ALIGN(4);\n _ebss = .;\n } > RAM\n\n\n \/* The stack starts 32 bytes below to of RAM as those 32 bytes are needed\n * for the IAR ROM function that we use to write the Flash with persistent\n * data.\n *\/\n _stacktop = ORIGIN(RAM) + LENGTH(RAM) - 32;\n}\n","new_contents":"MEMORY\n{\n FLASH (rx) : ORIGIN = 0x0, LENGTH = 0x4000 \/* 16K *\/\n RAM (rwx) : ORIGIN = 0x10000000, LENGTH = 0x1000 \/* 4K *\/\n}\n\nSECTIONS\n{\n .vectors :\n {\n _text = .;\n KEEP(*(.isr_vector))\n . = ALIGN(4);\n } > FLASH\n\n\n .text :\n {\n KEEP(*(.after_vectors))\n *(.text*)\n *(.rodata*)\n . = ALIGN(4);\n _etext = .;\n } > FLASH\n\n\n .data : AT (_etext)\n {\n _data = .;\n *(.survivors) \/* 80 bytes that survive reset in LPC81x *\/\n *(.data*)\n . = ALIGN(4);\n _edata = .;\n } > RAM\n\n\n .bss :\n {\n _bss = .;\n *(.bss*)\n *(COMMON)\n . = ALIGN(4);\n _ebss = .;\n } > RAM\n\n\n \/* Use the top-most page in flash to store the persistent data *\/\n .persistent_data : AT (0x4000 - 64)\n {\n KEEP(*(.persistent_data))\n } > FLASH\n\n\n \/* The stack starts 32 bytes below to of RAM as those 32 bytes are needed\n * for the IAR ROM function that we use to write the Flash with persistent\n * data.\n *\/\n _stacktop = ORIGIN(RAM) + LENGTH(RAM) - 32;\n}\n","subject":"Move persistent storage into top of the flash","message":"Move persistent storage into top of the flash\n","lang":"Linker Script","license":"unlicense","repos":"laneboysrc\/nrf24l01-rc,laneboysrc\/nrf24l01-rc,laneboysrc\/nrf24l01-rc"} {"commit":"ed1a47372eb60f96545fe2fe363bda3404af51b3","old_file":"programs\/linker.ld","new_file":"programs\/linker.ld","old_contents":"ENTRY(main)\n\nSECTIONS {\n\t. = 0x400401000;\n\n\t.text BLOCK(4096) : ALIGN(4096)\n\t{\n\t\t*(.text)\n\t}\n\n\t. = 0x400601000;\n\n\t.data BLOCK(4096) : ALIGN(4096)\n\t{\n\t\t*(.data)\n\t}\n\n\t.bss BLOCK(4096) : ALIGN(4096)\n\t{\n\t\t*(.bss)\n\t}\n}","new_contents":"ENTRY(main)\n\nSECTIONS {\n\t. = 0x8000401000;\n\n\t.text BLOCK(4096) : ALIGN(4096)\n\t{\n\t\t*(.text)\n\t}\n\n\t. = 0x8000601000;\n\n\t.data BLOCK(4096) : ALIGN(4096)\n\t{\n\t\t*(.data)\n\t}\n\n\t.bss BLOCK(4096) : ALIGN(4096)\n\t{\n\t\t*(.bss)\n\t}\n}","subject":"Make sure programs goes in PML4T entries > 0","message":"Make sure programs goes in PML4T entries > 0\n","lang":"Linker Script","license":"mit","repos":"wichtounet\/thor-os,wichtounet\/thor-os"} {"commit":"e213d3cac314b9d3dcd552b55b0de204ffda1483","old_file":"src\/kernel\/nosys.lds","new_file":"src\/kernel\/nosys.lds","old_contents":"\nPROVIDE(diag_init = nosys);\nPROVIDE(diag_getc = nosys);\nPROVIDE(diag_putc = nosys);\n\nPROVIDE(irq_init = nosys);\nPROVIDE(irq_attach = nosys);\nPROVIDE(irq_detach = nosys);\nPROVIDE(irq_dispatch = nosys);\n\nPROVIDE(softirq_init = nosys);\nPROVIDE(softirq_install = nosys);\nPROVIDE(softirq_raise = nosys);\nPROVIDE(softirq_dispatch = nosys);\n\nPROVIDE(sched_policy_current = nosys);\nPROVIDE(__sched_dispatch = nosys);\n\nPROVIDE(printk = nosys);\n\nPROVIDE(timer_init = nosys);\nPROVIDE(set_timer = nosys);\nPROVIDE(close_timer = nosys);\nPROVIDE(timers_off = nosys);\nPROVIDE(irq_func_tmr_1mS = nosys);\nPROVIDE(usleep = nosys);\n\n\/* XXX remove from here. -- Eldar *\/\nPROVIDE(uart_init = nosys);\n","new_contents":"\nPROVIDE(diag_init = nosys);\nPROVIDE(diag_getc = nosys);\nPROVIDE(diag_putc = nosys);\n\nPROVIDE(irq_init = nosys);\nPROVIDE(irq_attach = nosys);\nPROVIDE(irq_detach = nosys);\nPROVIDE(irq_dispatch = nosys);\n\nPROVIDE(softirq_init = nosys);\nPROVIDE(softirq_install = nosys);\nPROVIDE(softirq_raise = nosys);\nPROVIDE(softirq_dispatch = nosys);\n\nPROVIDE(sched_policy_current = nosys);\nPROVIDE(__sched_dispatch = nosys);\nPROVIDE(sched_check_switch = nosys);\n\nPROVIDE(printk = nosys);\n\nPROVIDE(timer_init = nosys);\nPROVIDE(set_timer = nosys);\nPROVIDE(close_timer = nosys);\nPROVIDE(timers_off = nosys);\nPROVIDE(irq_func_tmr_1mS = nosys);\nPROVIDE(usleep = nosys);\n\n\/* XXX remove from here. -- Eldar *\/\nPROVIDE(uart_init = nosys);\n","subject":"Fix undefined reference to `sched_check_switch' error on some configs","message":"Fix undefined reference to `sched_check_switch' error on some configs","lang":"Linker Script","license":"bsd-2-clause","repos":"vrxfile\/embox-trik,mike2390\/embox,embox\/embox,Kakadu\/embox,Kefir0192\/embox,vrxfile\/embox-trik,gzoom13\/embox,gzoom13\/embox,abusalimov\/embox,Kefir0192\/embox,mike2390\/embox,Kefir0192\/embox,gzoom13\/embox,vrxfile\/embox-trik,embox\/embox,abusalimov\/embox,vrxfile\/embox-trik,vrxfile\/embox-trik,Kakadu\/embox,vrxfile\/embox-trik,Kakadu\/embox,Kakadu\/embox,abusalimov\/embox,mike2390\/embox,mike2390\/embox,Kakadu\/embox,mike2390\/embox,Kefir0192\/embox,Kakadu\/embox,embox\/embox,Kefir0192\/embox,Kefir0192\/embox,gzoom13\/embox,mike2390\/embox,gzoom13\/embox,Kakadu\/embox,gzoom13\/embox,abusalimov\/embox,abusalimov\/embox,abusalimov\/embox,embox\/embox,Kefir0192\/embox,vrxfile\/embox-trik,embox\/embox,mike2390\/embox,gzoom13\/embox,embox\/embox"} {"commit":"93e2527a640f6d051eeb136b7b15993ea18080fd","old_file":"cpu\/cc26x0\/ldscripts\/cc26x0f128.ld","new_file":"cpu\/cc26x0\/ldscripts\/cc26x0f128.ld","old_contents":"\/**\n * @addtogroup cpu_cc26x0\n * @{\n *\n * @file\n * @brief linker script for cc26x0f128 MCUs\n *\n * @}\n *\/\n\n\/* Memory Space Definitions: *\/\nMEMORY\n{\n rom (rx ) : ORIGIN = 0x00000000, LENGTH = 0x00020000 - 88 \/* technically, it's 128K *\/\n gpram (rwx) : ORIGIN = 0x11000000, LENGTH = 8K \/* configurable as cache. 20K here, 8K there, and 2K in the ld-script of cc26x0ware *\/\n ram (rwx) : ORIGIN = 0x20000000, LENGTH = 20K \/* sram *\/\n}\n\nINCLUDE cortexm_base.ld\n","new_contents":"\/**\n * @addtogroup cpu_cc26x0\n * @{\n *\n * @file\n * @brief linker script for cc26x0f128 MCUs\n *\n * @}\n *\/\n\n\/* Memory Space Definitions: *\/\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00000000, LENGTH = 0x00020000 - 88 \/* technically, it's 128K *\/\n gpram : ORIGIN = 0x11000000, LENGTH = 8K \/* configurable as cache. 20K here, 8K there, and 2K in the ld-script of cc26x0ware *\/\n ram (w!rx) : ORIGIN = 0x20000000, LENGTH = 20K \/* sram *\/\n}\n\nINCLUDE cortexm_base.ld\n","subject":"Adjust ldscript memory segment attributes","message":"cc26x0: Adjust ldscript memory segment attributes\n","lang":"Linker Script","license":"lgpl-2.1","repos":"biboc\/RIOT,rfuentess\/RIOT,yogo1212\/RIOT,BytesGalore\/RIOT,gebart\/RIOT,jasonatran\/RIOT,basilfx\/RIOT,x3ro\/RIOT,OTAkeys\/RIOT,toonst\/RIOT,josephnoir\/RIOT,josephnoir\/RIOT,mtausig\/RIOT,kaspar030\/RIOT,kaspar030\/RIOT,yogo1212\/RIOT,yogo1212\/RIOT,lazytech-org\/RIOT,authmillenon\/RIOT,smlng\/RIOT,aeneby\/RIOT,cladmi\/RIOT,OlegHahm\/RIOT,miri64\/RIOT,miri64\/RIOT,aeneby\/RIOT,mtausig\/RIOT,authmillenon\/RIOT,biboc\/RIOT,neiljay\/RIOT,mtausig\/RIOT,mfrey\/RIOT,kYc0o\/RIOT,neiljay\/RIOT,rfuentess\/RIOT,kYc0o\/RIOT,kbumsik\/RIOT,smlng\/RIOT,kYc0o\/RIOT,RIOT-OS\/RIOT,jasonatran\/RIOT,cladmi\/RIOT,kbumsik\/RIOT,jasonatran\/RIOT,josephnoir\/RIOT,mtausig\/RIOT,biboc\/RIOT,x3ro\/RIOT,smlng\/RIOT,RIOT-OS\/RIOT,cladmi\/RIOT,RIOT-OS\/RIOT,yogo1212\/RIOT,cladmi\/RIOT,rfuentess\/RIOT,x3ro\/RIOT,gebart\/RIOT,mfrey\/RIOT,jasonatran\/RIOT,A-Paul\/RIOT,kYc0o\/RIOT,avmelnikoff\/RIOT,josephnoir\/RIOT,lazytech-org\/RIOT,avmelnikoff\/RIOT,ant9000\/RIOT,A-Paul\/RIOT,miri64\/RIOT,basilfx\/RIOT,BytesGalore\/RIOT,authmillenon\/RIOT,gebart\/RIOT,OTAkeys\/RIOT,kaspar030\/RIOT,x3ro\/RIOT,kaspar030\/RIOT,miri64\/RIOT,gebart\/RIOT,yogo1212\/RIOT,avmelnikoff\/RIOT,neiljay\/RIOT,smlng\/RIOT,ant9000\/RIOT,josephnoir\/RIOT,aeneby\/RIOT,basilfx\/RIOT,kbumsik\/RIOT,mtausig\/RIOT,mfrey\/RIOT,mfrey\/RIOT,OlegHahm\/RIOT,OTAkeys\/RIOT,mfrey\/RIOT,basilfx\/RIOT,BytesGalore\/RIOT,toonst\/RIOT,biboc\/RIOT,OTAkeys\/RIOT,toonst\/RIOT,authmillenon\/RIOT,rfuentess\/RIOT,authmillenon\/RIOT,lazytech-org\/RIOT,neiljay\/RIOT,biboc\/RIOT,A-Paul\/RIOT,aeneby\/RIOT,A-Paul\/RIOT,lazytech-org\/RIOT,basilfx\/RIOT,A-Paul\/RIOT,OTAkeys\/RIOT,lazytech-org\/RIOT,kYc0o\/RIOT,BytesGalore\/RIOT,cladmi\/RIOT,miri64\/RIOT,kaspar030\/RIOT,avmelnikoff\/RIOT,authmillenon\/RIOT,avmelnikoff\/RIOT,kbumsik\/RIOT,OlegHahm\/RIOT,BytesGalore\/RIOT,smlng\/RIOT,gebart\/RIOT,toonst\/RIOT,ant9000\/RIOT,rfuentess\/RIOT,kbumsik\/RIOT,ant9000\/RIOT,aeneby\/RIOT,jasonatran\/RIOT,RIOT-OS\/RIOT,yogo1212\/RIOT,OlegHahm\/RIOT,ant9000\/RIOT,x3ro\/RIOT,neiljay\/RIOT,toonst\/RIOT,RIOT-OS\/RIOT,OlegHahm\/RIOT"} {"commit":"28361592aeb2ac564d4a6dbe8c85319baa69055a","old_file":"cpu\/sam0_common\/ldscripts\/samd21j18a_arduino_bootloader.ld","new_file":"cpu\/sam0_common\/ldscripts\/samd21j18a_arduino_bootloader.ld","old_contents":"\/*\n * Copyright (C) 2017 Inria\n *\n * This file is subject to the terms and conditions of the GNU Lesser\n * General Public License v2.1. See the file LICENSE in the top level\n * directory for more details.\n *\/\n\n\/**\n * @addtogroup cpu_samd21\n * @{\n *\n * @file\n * @brief Memory definitions for the SAMD21J18A with Arduino bootloader\n *\n * @author Alexandre Abadie \n *\n * @}\n *\/\n\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00002000, LENGTH = 256K-0x2000\n ram (rwx) : ORIGIN = 0x20000000, LENGTH = 32K\n}\n\nINCLUDE cortexm_base.ld\n","new_contents":"\/*\n * Copyright (C) 2017 Inria\n *\n * This file is subject to the terms and conditions of the GNU Lesser\n * General Public License v2.1. See the file LICENSE in the top level\n * directory for more details.\n *\/\n\n\/**\n * @addtogroup cpu_samd21\n * @{\n *\n * @file\n * @brief Memory definitions for the SAMD21J18A with Arduino bootloader\n *\n * @author Alexandre Abadie \n *\n * @}\n *\/\n\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00002000, LENGTH = 256K-0x2000\n ram (w!rx) : ORIGIN = 0x20000000, LENGTH = 32K\n}\n\nINCLUDE cortexm_base.ld\n","subject":"Adjust ldscript memory segment attributes","message":"sam0_common: Adjust ldscript memory segment attributes\n","lang":"Linker Script","license":"lgpl-2.1","repos":"avmelnikoff\/RIOT,toonst\/RIOT,OlegHahm\/RIOT,basilfx\/RIOT,miri64\/RIOT,kYc0o\/RIOT,A-Paul\/RIOT,kbumsik\/RIOT,RIOT-OS\/RIOT,authmillenon\/RIOT,OlegHahm\/RIOT,OTAkeys\/RIOT,josephnoir\/RIOT,x3ro\/RIOT,yogo1212\/RIOT,A-Paul\/RIOT,x3ro\/RIOT,kYc0o\/RIOT,authmillenon\/RIOT,kaspar030\/RIOT,kaspar030\/RIOT,smlng\/RIOT,mfrey\/RIOT,rfuentess\/RIOT,gebart\/RIOT,mfrey\/RIOT,cladmi\/RIOT,biboc\/RIOT,cladmi\/RIOT,toonst\/RIOT,yogo1212\/RIOT,OlegHahm\/RIOT,OTAkeys\/RIOT,miri64\/RIOT,A-Paul\/RIOT,aeneby\/RIOT,kYc0o\/RIOT,aeneby\/RIOT,ant9000\/RIOT,RIOT-OS\/RIOT,OlegHahm\/RIOT,jasonatran\/RIOT,basilfx\/RIOT,aeneby\/RIOT,josephnoir\/RIOT,mfrey\/RIOT,toonst\/RIOT,authmillenon\/RIOT,x3ro\/RIOT,cladmi\/RIOT,avmelnikoff\/RIOT,neiljay\/RIOT,biboc\/RIOT,lazytech-org\/RIOT,jasonatran\/RIOT,smlng\/RIOT,jasonatran\/RIOT,OlegHahm\/RIOT,mtausig\/RIOT,neiljay\/RIOT,authmillenon\/RIOT,kbumsik\/RIOT,kbumsik\/RIOT,basilfx\/RIOT,ant9000\/RIOT,neiljay\/RIOT,ant9000\/RIOT,OTAkeys\/RIOT,rfuentess\/RIOT,kbumsik\/RIOT,OTAkeys\/RIOT,mfrey\/RIOT,basilfx\/RIOT,rfuentess\/RIOT,biboc\/RIOT,cladmi\/RIOT,lazytech-org\/RIOT,gebart\/RIOT,kaspar030\/RIOT,OTAkeys\/RIOT,kYc0o\/RIOT,miri64\/RIOT,authmillenon\/RIOT,kaspar030\/RIOT,kYc0o\/RIOT,lazytech-org\/RIOT,ant9000\/RIOT,avmelnikoff\/RIOT,biboc\/RIOT,lazytech-org\/RIOT,miri64\/RIOT,BytesGalore\/RIOT,aeneby\/RIOT,kaspar030\/RIOT,avmelnikoff\/RIOT,rfuentess\/RIOT,josephnoir\/RIOT,x3ro\/RIOT,x3ro\/RIOT,ant9000\/RIOT,josephnoir\/RIOT,yogo1212\/RIOT,mfrey\/RIOT,aeneby\/RIOT,smlng\/RIOT,gebart\/RIOT,authmillenon\/RIOT,RIOT-OS\/RIOT,mtausig\/RIOT,toonst\/RIOT,jasonatran\/RIOT,rfuentess\/RIOT,miri64\/RIOT,yogo1212\/RIOT,kbumsik\/RIOT,josephnoir\/RIOT,cladmi\/RIOT,yogo1212\/RIOT,lazytech-org\/RIOT,RIOT-OS\/RIOT,BytesGalore\/RIOT,basilfx\/RIOT,jasonatran\/RIOT,smlng\/RIOT,BytesGalore\/RIOT,A-Paul\/RIOT,RIOT-OS\/RIOT,neiljay\/RIOT,gebart\/RIOT,mtausig\/RIOT,mtausig\/RIOT,neiljay\/RIOT,biboc\/RIOT,A-Paul\/RIOT,yogo1212\/RIOT,toonst\/RIOT,mtausig\/RIOT,avmelnikoff\/RIOT,gebart\/RIOT,BytesGalore\/RIOT,smlng\/RIOT,BytesGalore\/RIOT"} {"commit":"cd9fda84b3eac5554aa8bd7238bd881be6ce11bd","old_file":"cwos.ld","new_file":"cwos.ld","old_contents":"ENTRY(_start)\nSECTIONS\n{\n\t. = 0x00000000; \/* QEMU versatilepb start address *\/\n\t.text : { \n\t\t_text = .;\n\t\tboot.o (interrupt_vector)\n\t\t*(.text)\n\t\t_etext = .;\n\t}\n\n\t.rodata : {\n\t\t_rodata = .;\n\t\t*(.rodata)\n\t\t_erodata = .;\n\t}\n\n\t.data : { \n\t\t_data = .;\n\t\t*(.data) \n\t\t_edata = .;\n\t}\n\t.bss : {\n\t\t_bss = .;\n\t\t*(.bss)\n\t\t*(COMMON)\n\t\t_ebss = .;\n\t} \n\n\t. = ALIGN(0x1000);\n\n\tkernel_stack_top = .;\n\t. += 0x1000;\n\tkernel_stack_start = .;\n\t. += 0x1000;\n\tirq_stack_start = .;\n}\n","new_contents":"ENTRY(_start)\nSECTIONS\n{\n\t. = 0xC0000000; \/* QEMU versatilepb start address *\/\n\t.text : { \n\t\t_text = .;\n\t\tboot.o (interrupt_vector)\n\t\t*(.text)\n\t\t_etext = .;\n\t}\n\n\t.rodata : {\n\t\t_rodata = .;\n\t\t*(.rodata)\n\t\t_erodata = .;\n\t}\n\n\t.data : { \n\t\t_data = .;\n\t\t*(.data) \n\t\t_edata = .;\n\t}\n\t.bss : {\n\t\t_bss = .;\n\t\t*(.bss)\n\t\t*(COMMON)\n\t\t_ebss = .;\n\t} \n\n\t. = ALIGN(0x1000);\n\n\tkernel_stack_top = .;\n\t. += 0x1000;\n\tkernel_stack_start = .;\n\t. += 0x1000;\n\tirq_stack_start = .;\n}\n","subject":"Change link base address from 0x0 to 0xC0000000","message":"Change link base address from 0x0 to 0xC0000000\n","lang":"Linker Script","license":"mit","repos":"waynecw\/cwos,waynecw\/cwos"} {"commit":"37cb8dcf95fc86794ce9fd117f2e35018ce4d4f9","old_file":"cpu\/lm4f120\/ldscripts\/LM4F120H5QR.ld","new_file":"cpu\/lm4f120\/ldscripts\/LM4F120H5QR.ld","old_contents":"\/*\n * Copyright (C) 2015 Rakendra Thapa \n *\n * @}\n *\/\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00000000, LENGTH = 256K\n ram (rwx) : ORIGIN = 0x20000000, LENGTH = 32K\n}\n\nINCLUDE cortexm_base.ld\n","new_contents":"\/*\n * Copyright (C) 2015 Rakendra Thapa \n *\n * @}\n *\/\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00000000, LENGTH = 256K\n ram (w!rx) : ORIGIN = 0x20000000, LENGTH = 32K\n}\n\nINCLUDE cortexm_base.ld\n","subject":"Adjust ldscript memory segment attributes","message":"lm4f120: Adjust ldscript memory segment attributes\n","lang":"Linker Script","license":"lgpl-2.1","repos":"BytesGalore\/RIOT,mfrey\/RIOT,rfuentess\/RIOT,neiljay\/RIOT,rfuentess\/RIOT,gebart\/RIOT,biboc\/RIOT,josephnoir\/RIOT,x3ro\/RIOT,kYc0o\/RIOT,smlng\/RIOT,rfuentess\/RIOT,gebart\/RIOT,kaspar030\/RIOT,basilfx\/RIOT,gebart\/RIOT,toonst\/RIOT,toonst\/RIOT,neiljay\/RIOT,miri64\/RIOT,BytesGalore\/RIOT,neiljay\/RIOT,neiljay\/RIOT,BytesGalore\/RIOT,OTAkeys\/RIOT,RIOT-OS\/RIOT,lazytech-org\/RIOT,yogo1212\/RIOT,smlng\/RIOT,mtausig\/RIOT,jasonatran\/RIOT,aeneby\/RIOT,A-Paul\/RIOT,cladmi\/RIOT,kYc0o\/RIOT,toonst\/RIOT,authmillenon\/RIOT,basilfx\/RIOT,toonst\/RIOT,kaspar030\/RIOT,RIOT-OS\/RIOT,OlegHahm\/RIOT,jasonatran\/RIOT,yogo1212\/RIOT,biboc\/RIOT,aeneby\/RIOT,toonst\/RIOT,gebart\/RIOT,josephnoir\/RIOT,miri64\/RIOT,basilfx\/RIOT,basilfx\/RIOT,cladmi\/RIOT,OTAkeys\/RIOT,x3ro\/RIOT,aeneby\/RIOT,rfuentess\/RIOT,A-Paul\/RIOT,mtausig\/RIOT,kbumsik\/RIOT,josephnoir\/RIOT,yogo1212\/RIOT,kYc0o\/RIOT,basilfx\/RIOT,RIOT-OS\/RIOT,ant9000\/RIOT,x3ro\/RIOT,yogo1212\/RIOT,cladmi\/RIOT,kbumsik\/RIOT,x3ro\/RIOT,mfrey\/RIOT,miri64\/RIOT,lazytech-org\/RIOT,OlegHahm\/RIOT,biboc\/RIOT,biboc\/RIOT,OTAkeys\/RIOT,mfrey\/RIOT,RIOT-OS\/RIOT,mfrey\/RIOT,authmillenon\/RIOT,jasonatran\/RIOT,rfuentess\/RIOT,lazytech-org\/RIOT,avmelnikoff\/RIOT,authmillenon\/RIOT,kbumsik\/RIOT,neiljay\/RIOT,josephnoir\/RIOT,miri64\/RIOT,lazytech-org\/RIOT,A-Paul\/RIOT,ant9000\/RIOT,lazytech-org\/RIOT,mfrey\/RIOT,kbumsik\/RIOT,gebart\/RIOT,BytesGalore\/RIOT,avmelnikoff\/RIOT,OlegHahm\/RIOT,yogo1212\/RIOT,ant9000\/RIOT,kbumsik\/RIOT,kaspar030\/RIOT,jasonatran\/RIOT,yogo1212\/RIOT,kaspar030\/RIOT,authmillenon\/RIOT,OTAkeys\/RIOT,josephnoir\/RIOT,OTAkeys\/RIOT,ant9000\/RIOT,smlng\/RIOT,mtausig\/RIOT,aeneby\/RIOT,RIOT-OS\/RIOT,ant9000\/RIOT,mtausig\/RIOT,smlng\/RIOT,avmelnikoff\/RIOT,OlegHahm\/RIOT,kYc0o\/RIOT,cladmi\/RIOT,aeneby\/RIOT,OlegHahm\/RIOT,miri64\/RIOT,biboc\/RIOT,x3ro\/RIOT,BytesGalore\/RIOT,smlng\/RIOT,kYc0o\/RIOT,A-Paul\/RIOT,jasonatran\/RIOT,avmelnikoff\/RIOT,A-Paul\/RIOT,avmelnikoff\/RIOT,authmillenon\/RIOT,cladmi\/RIOT,mtausig\/RIOT,authmillenon\/RIOT,kaspar030\/RIOT"} {"commit":"7acec6e317e3515528b41fabebaae409a6cbcb88","old_file":"golf2\/chip_layout.ld","new_file":"golf2\/chip_layout.ld","old_contents":"\/* Copyright 2018 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00044400, LENGTH = 0x00021c00\n prog (rx) : ORIGIN = 0x00066000, LENGTH = 0x00020000\n ram (rwx) : ORIGIN = 0x00010000, LENGTH = 0x00004000\n appram (rwx) : ORIGIN = 0x00014000, LENGTH = 0x0000c000\n}\n\nMPU_MIN_ALIGN = 8K;\n","new_contents":"\/* Copyright 2018 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nMEMORY\n{\n rom (rx) : ORIGIN = 0x00044400, LENGTH = 0x00021c00\n prog (rx) : ORIGIN = 0x00076000, LENGTH = 0x00010000\n ram (rwx) : ORIGIN = 0x00010000, LENGTH = 0x00004000\n appram (rwx) : ORIGIN = 0x00014000, LENGTH = 0x0000c000\n}\n\nMPU_MIN_ALIGN = 8K;\n","subject":"Make more room for the kernel. Useful for when there are lots of debugging messages.","message":"Make more room for the kernel. Useful for when there are lots\nof debugging messages.\n","lang":"Linker Script","license":"apache-2.0","repos":"google\/tock-on-titan,google\/tock-on-titan,google\/tock-on-titan"} {"commit":"ce1c5d7ccd324bbad3605cb1d6f0a8473d4001c4","old_file":"tensorflow\/lite\/delegates\/utils\/experimental\/sample_stable_delegate\/version_script.lds","new_file":"tensorflow\/lite\/delegates\/utils\/experimental\/sample_stable_delegate\/version_script.lds","old_contents":"VERS_1.0 {\n # Export vendor delegate symbol only.\n global:\n TFL_TheStableDelegate;\n\n # Hide everything else.\n local:\n *;\n};\n","new_contents":"VERS_1.0 {\n # Export the stable delegate API.\n global:\n # Export stable delegate symbol.\n extern \"C\" {\n TFL_TheStableDelegate;\n };\n\n # Export operator new\/delete. These are defined as weak symbols and we need to keep these\n # symbols to ensure that if the main binary overrides these, we use the same version in the\n # stable delegate, since data that is allocated by stable delegate may be deallocated elsewhere.\n extern \"C++\" {\n # The syntax here is a bit awkward. Here we want to match against a demangled symbol name\n # that contains spaces, but we also want to use glob-style pattern matching.\n # The linker script syntax doesn't allow spaces in symbol names unless quoted;\n # but if you do quote the symbol name, then it doesn't do glob-style pattern matching.\n # So we can't use quotes. Instead we just use the wildcard character \"?\" to match space,\n # which is not ideal, since it would also match any other character. But these patterns\n # are nevertheless sufficiently unique that they are unlikely to match any symbols other\n # than the overloaded global ::operator new and ::operator delete functions.\n operator?new*;\n operator?delete*;\n\n # Currently the demangler doesn't output the leading \"::\" for global symbols.\n # But just in case a future symbol demangler outputs the leading \"::\",\n # we also export those names too...\n ::operator?new*;\n ::operator?delete*;\n };\n\n # Hide everything else.\n local:\n *;\n};\n","subject":"Add new and delete operators to the stable delegate linker script.","message":"Add new and delete operators to the stable delegate linker script.\n\nThis adds new and delete operators to the list of symbols that we keep\nwhen building the sample stable delegate. Those end up defined as weak\nsymbols in the stable delegate, and we need to ensure those get bound to\nthe same symbol for the stable delegate as for the main executable,\nsince data that is allocated by the stable delegate may be deallocated\nelsewhere.\n\nPiperOrigin-RevId: 490873417\n","lang":"Linker Script","license":"apache-2.0","repos":"tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow"} {"commit":"23821d5b2b59a27deda637f9414dd4e619db181b","old_file":"program.ld","new_file":"program.ld","old_contents":"ENTRY(_start)\nOUTPUT_FORMAT(elf32-i386)\n\nMEMORY {\n\thighmem : org = 0x80000000, l = 4096K\n}\n\nSECTIONS {\n\t.text : {\n\t\t*(.text*)\n\t} >highmem\n\n\t.rodata : {\n\t\t*(.rodata*)\n\t} >highmem\n\n\t.data : {\n\t\t*(.data*)\n\t} >highmem\n\n\t.eh_frame : {\n\t\t*(.eh_frame)\n\t} >highmem\n\n\t\/DISCARD\/ : {\n\t\t*(.comment)\n\t\t*(.rel.eh_frame)\n\t}\n}\n","new_contents":"ENTRY(_start)\n\nMEMORY {\n\thighmem : org = 0x80000000, l = 4096K\n}\n\nSECTIONS {\n\t.text : {\n\t\t*(.text*)\n\t} >highmem\n\n\t.rodata : {\n\t\t*(.rodata*)\n\t} >highmem\n\n\t.data : {\n\t\t*(.data*)\n\t} >highmem\n\n .eh_frame : {\n\t\t*(.eh_frame*)\n } >highmem\n\n\t\/DISCARD\/ : {\n\t\t*(.comment)\n\t\t*(.rel.eh_frame)\n\t}\n}\n","subject":"Fix WD in .bin opens","message":"Fix WD in .bin opens\n","lang":"Linker Script","license":"mit","repos":"redox-os\/libc,redox-os\/libc,redox-os\/libc"} {"commit":"1dd56ee29c3b56ea314a514c236f370b467c900e","old_file":"runtime\/layouts\/nrf52840.ld","new_file":"runtime\/layouts\/nrf52840.ld","old_contents":"\/* Layout for the nRF52840-DK, usable by the examples in this repository. *\/\n\nMEMORY {\n FLASH (X) : ORIGIN = 0x00030000, LENGTH = 0x000D0000\n RAM (W) : ORIGIN = 0x20004000, LENGTH = 62K\n}\n\nTBF_HEADER_SIZE = 0x48;\nINCLUDE libtock_layout.ld\n","new_contents":"\/* Layout for the nRF52840-DK, usable by the examples in this repository. *\/\n\nMEMORY {\n FLASH (X) : ORIGIN = 0x00030000, LENGTH = 0x000D0000\n RAM (W) : ORIGIN = 0x20008000, LENGTH = 46K\n}\n\nTBF_HEADER_SIZE = 0x48;\nINCLUDE libtock_layout.ld\n","subject":"Adjust the NRF52840-DK's RAM window to match that of latest Tock master.","message":"Adjust the NRF52840-DK's RAM window to match that of latest Tock master.\n","lang":"Linker Script","license":"apache-2.0","repos":"tock\/libtock-rs"} {"commit":"32b1eb40f070afa8f5a39c4a66afa2eb769d42c7","old_file":"template\/gcc_nrf51_s110.ld","new_file":"template\/gcc_nrf51_s110.ld","old_contents":"\/* Linker script to configure memory regions. *\/\r\nMEMORY\r\n{\r\n FLASH (rx) : ORIGIN = 0x14000, LENGTH = 0x26000 \/* 80 kB is taken by S110, 176 kB for app. *\/\r\n RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000 \/* 8 kB is taken by S110,8 kB for app. *\/\r\n}\r\nINCLUDE \"gcc_nrf51_common.ld\"\r\n","new_contents":"\/* Linker script to configure memory regions. *\/\r\nMEMORY\r\n{\r\n FLASH (rx) : ORIGIN = 0x14000, LENGTH = 0x2C000 \/* 80 kB is taken by S110, 176 kB for app. *\/\r\n RAM (rwx) : ORIGIN = 0x20002000, LENGTH = 0x2000 \/* 8 kB is taken by S110,8 kB for app. *\/\r\n}\r\nINCLUDE \"gcc_nrf51_common.ld\"\r\n","subject":"Use full flash in S110 linker script","message":"Use full flash in S110 linker script","lang":"Linker Script","license":"bsd-3-clause","repos":"jf87\/nrf51-pure-gcc-setup"} {"commit":"5cdf55ff2084d8aa719fe74fbe1622b61ff64294","old_file":"src\/Vulkan\/fuchsia_vk_swiftshader.lds","new_file":"src\/Vulkan\/fuchsia_vk_swiftshader.lds","old_contents":"# For Fuchsia, we must not export anything other than loader-related API\n# There is also the vk_icdInitializeConnectToServiceCallback entry point\n# that is specific to the Fuchsia Vulkan loader implementation.\n{\nglobal:\n\tvkGetInstanceProcAddr;\n\n\t# Loader-ICD interface functions\n\tvk_icdGetInstanceProcAddr;\n\tvk_icdNegotiateLoaderICDInterfaceVersion;\n\tvk_icdInitializeConnectToServiceCallback;\n\nlocal:\n\t*;\n};\n\n","new_contents":"# For Fuchsia, we must not export anything other than loader-related API\n# There is also the vk_icdInitializeConnectToServiceCallback entry point\n# that is specific to the Fuchsia Vulkan loader implementation.\n{\nglobal:\n\t# Loader-ICD interface functions\n\tvk_icdGetInstanceProcAddr;\n\tvk_icdNegotiateLoaderICDInterfaceVersion;\n\tvk_icdInitializeConnectToServiceCallback;\n\nlocal:\n\t*;\n};\n\n","subject":"Remove vkGetInstanceProcAddr from exported symbols on Fuchsia","message":"Remove vkGetInstanceProcAddr from exported symbols on Fuchsia\n\nFuchsia only allows access to the ICD's functions, through the Vulkan\nLoader interface functions.\n\nExporting this function was copied from the android_vk_swiftshader.lds\nfile, but it has been removed from the latter due to causing direct\naccess to methods that should have an overridden implementation. Similar\nissues are likely to occur on Fuchsia if we keep this function exported.\n\nBug: b\/148822450\nChange-Id: I12f2dad933abcd9dbf89518ac5714b9f936419e4\nReviewed-on: https:\/\/swiftshader-review.googlesource.com\/c\/SwiftShader\/+\/53609\nKokoro-Result: kokoro <2ac7b1f3fa578934c95181d4272be0d3bca00121@google.com>\nReviewed-by: David Turner \nReviewed-by: Nicolas Capens <51edc787c30f24c4904e8ffbb5523c3a9f7a451d@google.com>\nTested-by: Nicolas Capens <51edc787c30f24c4904e8ffbb5523c3a9f7a451d@google.com>\n","lang":"Linker Script","license":"apache-2.0","repos":"google\/swiftshader,bkaradzic\/SwiftShader,bkaradzic\/SwiftShader,bkaradzic\/SwiftShader,google\/swiftshader,bkaradzic\/SwiftShader,google\/swiftshader,bkaradzic\/SwiftShader"} {"commit":"65e7c5c372c5078df671a461b6a8b3174f23cb82","old_file":"misc\/ldscripts\/x86\/x86-qemu\/kernel.lds","new_file":"misc\/ldscripts\/x86\/x86-qemu\/kernel.lds","old_contents":"OUTPUT_FORMAT(\"elf32-i386\");\nOUTPUT_ARCH(\"i386\")\nENTRY(_core_entry)\n\nSECTIONS\n{\n\t. = 0x100000;\n\n\t__pok_begin = . ;\n\n\t.text :\n\t{\n\t\t*(.multiboot)\n\t\t*(.text)\n\t}\n\n\t.rodata :\n\t{\n\t\t*(.rodata)\n\t}\n\n\t.data :\n\t{\n\t\t*(.data) *(.bss) *(COMMON)\n\n\t\t__archive_begin = .;\n\t\t*(.archive)\n\t\t__archive_end = .;\n\t\t__archive2_begin = .;\n\t\t*(.archive2)\n\t\t__archive2_end = .;\n\t}\n\n\t__pok_end = . ;\n}\n","new_contents":"OUTPUT_FORMAT(\"elf32-i386\");\nOUTPUT_ARCH(\"i386\")\nENTRY(_core_entry)\n\nSECTIONS\n{\n\t. = 0x100000;\n\n\t__pok_begin = . ;\n\n\t.text :\n\t{\n\t\t*(.multiboot)\n\t\t*(.text)\n\t\t*(*got*)\n\t}\n\n\t.rodata :\n\t{\n\t\t*(.rodata)\n\t}\n\n\t.data :\n\t{\n\t\t*(.data*) *(.bss) *(COMMON)\n\n\t\t__archive_begin = .;\n\t\t*(.archive)\n\t\t__archive_end = .;\n\t\t__archive2_begin = .;\n\t\t*(.archive2)\n\t\t__archive2_end = .;\n\t}\n\n\t\/* Nothing must have a VMA greater than __pok_end symbol address *\/\n\t__pok_end = . ;\n}\n","subject":"Update linker script to put every section VMA before __pok_end symbol","message":"Update linker script to put every section VMA before __pok_end symbol\n","lang":"Linker Script","license":"bsd-2-clause","repos":"pok-kernel\/pok,pok-kernel\/pok,pok-kernel\/pok,pok-kernel\/pok"} {"commit":"8c5b43ff28b161deabbc47c8c99d20f50f0c3a75","old_file":"os\/os.lds","new_file":"os\/os.lds","old_contents":"ENTRY(kinit);\nOUTPUT_FORMAT(elf32-i386);\n\nPHDRS { \n\theaders PT_PHDR FILEHDR PHDRS; \n\tcode PT_LOAD;\n}\n\nSECTIONS {\n\t.text 0x600: ALIGN(0x100) { *(.text) } :code\n\t.rdata : { *(rdata) }\n\t.data : { *(data) }\n\t.bss : { *(bss) }\n\t\/DISCARD\/ : { *(.eh_frame) }\n}","new_contents":"ENTRY(kinit);\nOUTPUT_FORMAT(elf32-i386);\n\nPHDRS { \n\theaders PT_PHDR PHDRS; \n\tcode PT_LOAD FILEHDR PHDRS;\n}\n\nSECTIONS {\n\t.text 0x600: ALIGN(0x100) { *(.text) } :code\n\t.rdata : { *(rdata) }\n\t.data : { *(data) }\n\t.bss : { *(bss) }\n\t\/DISCARD\/ : { *(.eh_frame) }\n}","subject":"Fix issue due to LD 20815","message":"Fix issue due to LD 20815\n\nhttps:\/\/sourceware.org\/bugzilla\/show_bug.cgi?id=20815\n","lang":"Linker Script","license":"mit","repos":"Sebazzz\/sdos"} {"commit":"a6403bee004b576e71e7d428bf5cc37a05235549","old_file":"scripts\/linker.ld","new_file":"scripts\/linker.ld","old_contents":"ENTRY(_start)\nSECTIONS\n{\n\t. = 0x100000;\n\n\t.text :\n\t{\n\t\t*(.multiboot)\n\t\t*(.text)\n\t\t. = ALIGN(4096);\n\t}\n\t.data :\n\t{\n\t\t*(.data)\n\t\t*(.rodata)\n\t\t. = ALIGN(4096);\n\t}\n\t.bss :\n\t{\n\t\t*(.bss)\n\t\t. = ALIGN(4096);\n\t}\n\t.stab :\n\t{\n\t\t*(.stab)\n\t\t. = ALIGN(4096);\n\t}\n\t.stabstr :\n\t{\n\t\t*(.stabstr)\n\t\t. = ALIGN(4096);\n\t}\n\n\t. = ALIGN(4096);\n\tKERNEL_CODE_END = .;\n\n\t\/DISCARD\/ : { *(.comment) *(.eh_frame) }\n}\n","new_contents":"ENTRY(_start)\nSECTIONS\n{\n\t. = 0x100000;\n\n\t.text :\n\t{\n\t\t*(.multiboot)\n\t\t*(.text)\n\t\t. = ALIGN(4096);\n\t}\n\t.data :\n\t{\n\t\t*(.data)\n\t\t*(.rodata)\n\t\t. = ALIGN(4096);\n\t}\n\t.stab :\n\t{\n\t\t*(.stab)\n\t\t. = ALIGN(4096);\n\t}\n\t.stabstr :\n\t{\n\t\t*(.stabstr)\n\t\t. = ALIGN(4096);\n\t}\n\t.bss :\n\t{\n\t\t*(.bss)\n\t\t. = ALIGN(4096);\n\t}\n\n\tSTACK_TOP = .;\n\t. = ALIGN(32768);\n\tKERNEL_CODE_END = .;\n\n\t\/DISCARD\/ : { *(.comment) *(.eh_frame) }\n}\n","subject":"Move stack define out of boot.asm","message":"Move stack define out of boot.asm\n","lang":"Linker Script","license":"apache-2.0","repos":"IcebergOS\/frogimine,IcebergOS\/frogimine,IcebergOS\/Cryst"} {"commit":"e41c4a692454bd5086ce00af45fe08ae2b75f7e4","old_file":"hw\/bsp\/nordic_pca10095_net\/boot-nrf5340_net.ld","new_file":"hw\/bsp\/nordic_pca10095_net\/boot-nrf5340_net.ld","old_contents":"\/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x01000000, LENGTH = 0x4000\n RAM (rwx) : ORIGIN = 0x21000000, LENGTH = 0x10000\n}\n\n\/* The bootloader does not contain an image header *\/\n_imghdr_size = 0x0;\n","new_contents":"\/*\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an\n * \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n * KIND, either express or implied. See the License for the\n * specific language governing permissions and limitations\n * under the License.\n *\/\nMEMORY\n{\n FLASH (rx) : ORIGIN = 0x01000000, LENGTH = 0x4000\n RAM (rwx) : ORIGIN = 0x21000000, LENGTH = 0x10000\n IPC (rw) : ORIGIN = 0x20000400, LENGTH = 0\n}\n\n\/* The bootloader does not contain an image header *\/\n_imghdr_size = 0x0;\n","subject":"Set empty IPC region for bootloader build","message":"bsp\/nordic_pca10095_net: Set empty IPC region for bootloader build\n\nIPC is not used in bootloader but linker were complaining about IPC\nregion being not present.\n","lang":"Linker Script","license":"apache-2.0","repos":"mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core,mlaz\/mynewt-core"}