mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-09-25 15:34:07 +00:00
commit8f77179a2fAuthor: Philippe Teuwen <phil@teuwen.org> Date: Thu Jan 6 11:25:38 2022 +0100 remove unused file commitbcafc5d03cAuthor: Philippe Teuwen <phil@teuwen.org> Date: Thu Jan 6 11:24:04 2022 +0100 some historical copyright adjustments, thanks @iceman1001! commitb703bb746bAuthor: Philippe Teuwen <phil@teuwen.org> Date: Thu Jan 6 02:19:46 2022 +0100 Adapting license headers, WIP commit8952a1f712Author: Philippe Teuwen <phil@teuwen.org> Date: Thu Jan 6 00:37:34 2022 +0100 adapt contributing text commitcdfb83075fAuthor: Philippe Teuwen <phil@teuwen.org> Date: Thu Jan 6 00:24:15 2022 +0100 toc commit014817f854Author: Philippe Teuwen <phil@teuwen.org> Date: Thu Jan 6 00:15:40 2022 +0100 Adding AUTHORS and changing licensing terms from 'GPLv2 or later' to 'GPLv3 or later' to comply with components available only under 'GPLv3 or later'. Details: Initial releases by Jonathan Westhues in 2005-2007 were made under GPL "either version 2 of the License, or (at your option) any later version" Since then, a number of dependencies and files were integrated to the project, but under a "GPLv3 or later" license. These components are reveng, desfire_crypto and lrpcrypto. Note that compnents cryptorf, hitag2crack and fpga-xc3s100e are also under GPLv3+ but not bound to the firmware or client source code. Therefore, we must mechanically upgrade the license of the whole project to GPLv3+, as made possible by the initial licensing terms and as mandated by the inclusion of GPLv3+ code. Still to do: update each source file header: Copyright (C) Proxmark3 contributors. See AUTHORS.md for details. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. commit5561466fe8Author: Philippe Teuwen <phil@teuwen.org> Date: Wed Jan 5 18:56:56 2022 +0100 make style commit2d1a1dc034Author: Philippe Teuwen <phil@teuwen.org> Date: Wed Jan 5 17:57:49 2022 +0100 make style doc/commands.json commitfc53665e5cMerge:a6d22ee43c0cc09d86Author: Philippe Teuwen <phil@teuwen.org> Date: Wed Jan 5 17:52:44 2022 +0100 Merge pull request #1552 from joswr1ght/master Add --no-auth support for hf mfdes createapp commitc0cc09d86bAuthor: Joshua Wright <jwright@hasborg.com> Date: Wed Jan 5 07:12:20 2022 -0500 Style consistency changes for hf mfdes createapp feature addition commitf9c96f49daAuthor: Joshua Wright <jwright@hasborg.com> Date: Tue Jan 4 17:01:10 2022 -0500 Update CHANGELOG with MIFARE DESFire createapp --no-auth change commit859b55933dAuthor: Joshua Wright <jwright@hasborg.com> Date: Tue Jan 4 15:55:26 2022 -0500 Add --no-auth support for hf mfdes createapp
75 lines
1.9 KiB
Plaintext
75 lines
1.9 KiB
Plaintext
/*
|
|
-----------------------------------------------------------------------------
|
|
Copyright (C) Jonathan Westhues, Mar 2006
|
|
Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
See LICENSE.txt for the text of the license.
|
|
-----------------------------------------------------------------------------
|
|
Bootrom linker script
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
INCLUDE ../common_arm/ldscript.common
|
|
|
|
PHDRS
|
|
{
|
|
phase1 PT_LOAD;
|
|
phase2 PT_LOAD;
|
|
bss PT_LOAD;
|
|
}
|
|
|
|
ENTRY(flashstart)
|
|
SECTIONS
|
|
{
|
|
.bootphase1 : {
|
|
*(.startup)
|
|
|
|
. = ALIGN(4);
|
|
_version_information_start = .;
|
|
KEEP(*(.version_information));
|
|
|
|
. = LENGTH(bootphase1) - 0x4;
|
|
LONG(_version_information_start);
|
|
} >bootphase1 :phase1
|
|
|
|
.bootphase2 : {
|
|
*(.startphase2)
|
|
*(.text)
|
|
*(.text.*)
|
|
*(.eh_frame)
|
|
*(.glue_7)
|
|
*(.glue_7t)
|
|
*(.rodata)
|
|
*(.rodata.*)
|
|
*(.data)
|
|
*(.data.*)
|
|
. = ALIGN(4);
|
|
} >ram AT>bootphase2 :phase2
|
|
|
|
__bootphase2_src_start__ = LOADADDR(.bootphase2);
|
|
__bootphase2_start__ = ADDR(.bootphase2);
|
|
__bootphase2_end__ = __bootphase2_start__ + SIZEOF(.bootphase2);
|
|
|
|
.bss : {
|
|
__bss_start__ = .;
|
|
*(.bss)
|
|
*(.bss.*)
|
|
. = ALIGN(4);
|
|
__bss_end__ = .;
|
|
} >ram AT>ram :bss
|
|
|
|
.commonarea (NOLOAD) : {
|
|
*(.commonarea)
|
|
} >commonarea
|
|
}
|