diff --git a/README.md b/README.md index d2915dc..c61bbb6 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Reliance Edge, including porting, building, configuring, and testing. This complete documentation, called the _Developer's Guide_, can be obtained for free from here: - + In addition to this README, see doc/release_notes.md for a list of updates to Reliance Edge and a list of known issues. There is also a quick-start @@ -60,7 +60,7 @@ and 500 to 700 bytes of stack. Reliance Edge is not designed for high-end embedded systems that run complicated operating systems like Linux or Windows Embedded Compact. Embedded systems of that variety are better served by other file systems, like Tuxera's -[Reliance Nitro](http://www.datalight.com/products/embedded-file-systems/reliance-nitro). +[Reliance Nitro](https://www.tuxera.com/products/reliance-nitro/). ## Getting Reliance Edge Working @@ -71,8 +71,8 @@ need to be filled in as well. These functions reside in a subdirectory in the os/ directory; see os/stub/ for a blank set of functions. Configuring includes creating a project directory (start by copying projects/newproj) and creating the two configuration files (redconf.h/redconf.c) using the Reliance Edge -Configuration Utility (which can be downloaded from -). +Configuration Utility (which has source code in the repository and prebuilt +binaries available from ). These topics are covered in much greater detail in the _Developer's Guide_, linked above. @@ -93,7 +93,7 @@ Reliance Edge is an open-source project licensed under the GNU General Public License v2 (GPLv2). Businesses and individuals that for commercial or other reasons cannot comply with the terms of the GPLv2 license must obtain a commercial license before incorporating Reliance Edge into proprietary software -for distribution in any form. Visit +for distribution in any form. Visit for more information. The commercial distribution also includes extra tests and tools not distributed with the GPLv2 version. diff --git a/README.txt b/README.txt index 5789e58..64e3463 100644 --- a/README.txt +++ b/README.txt @@ -29,7 +29,7 @@ of using Reliance Edge, including porting, building, configuring, and testing. This complete documentation, called the _Developer's Guide_, can be obtained for free from here: -http://www.datalight.com/reliance-edge +https://www.tuxera.com/products/reliance-edge/ In addition to this README, see doc/release_notes.md for a list of updates to Reliance Edge and a list of known issues. There is also a @@ -83,7 +83,8 @@ subdirectory in the os/ directory; see os/stub/ for a blank set of functions. Configuring includes creating a project directory (start by copying projects/newproj) and creating the two configuration files (redconf.h/redconf.c) using the Reliance Edge Configuration Utility -(which can be downloaded from http://www.datalight.com/reliance-edge). +(which has source code in the repository and prebuilt binaries available +from support@tuxera.com). These topics are covered in much greater detail in the _Developer's Guide_, linked above. @@ -108,7 +109,7 @@ Public License v2 (GPLv2). Businesses and individuals that for commercial or other reasons cannot comply with the terms of the GPLv2 license must obtain a commercial license before incorporating Reliance Edge into proprietary software for distribution in any form. Visit -http://www.datalight.com/reliance-edge for more information. The +https://www.tuxera.com/products/reliance-edge/ for more information. The commercial distribution also includes extra tests and tools not distributed with the GPLv2 version. diff --git a/bdev/bdev.c b/bdev/bdev.c index b28db50..a0b5220 100644 --- a/bdev/bdev.c +++ b/bdev/bdev.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements the block device abstraction of the file system. diff --git a/core/driver/blockio.c b/core/driver/blockio.c index 60e49ea..f3f8790 100644 --- a/core/driver/blockio.c +++ b/core/driver/blockio.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements block device I/O using logical blocks as the units. diff --git a/core/driver/buffer.c b/core/driver/buffer.c index f48a66a..2190dfd 100644 --- a/core/driver/buffer.c +++ b/core/driver/buffer.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements the block device buffering system. diff --git a/core/driver/buffercmn.c b/core/driver/buffercmn.c index 5db0b4c..bdd56c1 100644 --- a/core/driver/buffercmn.c +++ b/core/driver/buffercmn.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Common (shared) buffer module functions. diff --git a/core/driver/core.c b/core/driver/core.c index 45aa99f..961483f 100644 --- a/core/driver/core.c +++ b/core/driver/core.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements the entry-points to the core file system. diff --git a/core/driver/dir.c b/core/driver/dir.c index ba36397..f108101 100644 --- a/core/driver/dir.c +++ b/core/driver/dir.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements directory operations. diff --git a/core/driver/format.c b/core/driver/format.c index 4298c16..448cc75 100644 --- a/core/driver/format.c +++ b/core/driver/format.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements the Reliance Edge file system formatter. diff --git a/core/driver/imap.c b/core/driver/imap.c index 137712a..041486f 100644 --- a/core/driver/imap.c +++ b/core/driver/imap.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements allocation routines. diff --git a/core/driver/imapextern.c b/core/driver/imapextern.c index 248e295..2631a68 100644 --- a/core/driver/imapextern.c +++ b/core/driver/imapextern.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements routines for the external imap. diff --git a/core/driver/imapinline.c b/core/driver/imapinline.c index 9a41b67..1e7d153 100644 --- a/core/driver/imapinline.c +++ b/core/driver/imapinline.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements routines for the inline imap. diff --git a/core/driver/inode.c b/core/driver/inode.c index 8b755fc..b4912bc 100644 --- a/core/driver/inode.c +++ b/core/driver/inode.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements inode functions. diff --git a/core/driver/inodedata.c b/core/driver/inodedata.c index 19578cd..599dddb 100644 --- a/core/driver/inodedata.c +++ b/core/driver/inodedata.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements inode I/O functions. diff --git a/core/driver/redbufferpriv.h b/core/driver/redbufferpriv.h index 3768fa5..5b42899 100644 --- a/core/driver/redbufferpriv.h +++ b/core/driver/redbufferpriv.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines macros and interfaces used internally by the buffer modules. diff --git a/core/driver/volume.c b/core/driver/volume.c index 89244c4..fbe2c00 100644 --- a/core/driver/volume.c +++ b/core/driver/volume.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements core volume operations. diff --git a/core/include/redcore.h b/core/include/redcore.h index 6827c80..fd86fc5 100644 --- a/core/include/redcore.h +++ b/core/include/redcore.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/core/include/redcoremacs.h b/core/include/redcoremacs.h index 2bb7579..db87f8d 100644 --- a/core/include/redcoremacs.h +++ b/core/include/redcoremacs.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/core/include/redcorevol.h b/core/include/redcorevol.h index 0b93698..2ca725e 100644 --- a/core/include/redcorevol.h +++ b/core/include/redcorevol.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/core/include/rednodes.h b/core/include/rednodes.h index 585b941..9927d7f 100644 --- a/core/include/rednodes.h +++ b/core/include/rednodes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/doc/release_notes.md b/doc/release_notes.md index 78f418d..9d8a708 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -5,7 +5,7 @@ recent releases and a list of known issues. ## Release History and Changes -### Reliance Edge v2.6, December 2021 +### Reliance Edge v2.6, January 2022 #### Common Code Changes diff --git a/doc/release_notes.txt b/doc/release_notes.txt index f22785d..f556d34 100644 --- a/doc/release_notes.txt +++ b/doc/release_notes.txt @@ -9,7 +9,7 @@ course of recent releases and a list of known issues. Release History and Changes -Reliance Edge v2.6, December 2021 +Reliance Edge v2.6, January 2022 Common Code Changes diff --git a/fse/fse.c b/fse/fse.c index fd6dae3..1773347 100644 --- a/fse/fse.c +++ b/fse/fse.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implementation of the Reliance Edge FSE API. diff --git a/include/redapimacs.h b/include/redapimacs.h index 9f89081..18ba02c 100644 --- a/include/redapimacs.h +++ b/include/redapimacs.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines macros used to interact with the Reliance Edge API. diff --git a/include/redbdev.h b/include/redbdev.h index 1bf7e7c..3008cf7 100644 --- a/include/redbdev.h +++ b/include/redbdev.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redconfigchk.h b/include/redconfigchk.h index bdf77b3..c9a005a 100644 --- a/include/redconfigchk.h +++ b/include/redconfigchk.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Compile-time validity checks for the REDCONF macros. @@ -80,14 +81,7 @@ #error "Configuration error: REDCONF_API_POSIX_CWD must be defined." #endif #ifndef REDCONF_API_POSIX_FSTRIM - /* Reliance Edge v2.3 and below did not have REDCONF_API_POSIX_FSTRIM. You - can fix this error by downloading the latest version of the - Configuration Utility (assuming you are using the latest version of - Reliance Edge) from http://www.datalight.com/reliance-edge, loading your - redconf.c and redconf.h files, and saving them again, replacing the - original files. - */ - #error "Configuration error: your redconf.h is not compatible. Update your redconf files with a compatible version of the configuration utility." + #error "Configuration error: REDCONF_API_POSIX_FSTRIM must be defined." #endif #ifndef REDCONF_NAME_MAX #error "Configuration error: REDCONF_NAME_MAX must be defined." @@ -175,14 +169,7 @@ #error "Configuration error: REDCONF_VOLUME_COUNT must be defined." #endif #ifndef REDCONF_DISCARDS - /* Reliance Edge 1.0.5 and below did not have REDCONF_DISCARDS. You can - fix this error by downloading the latest version of the Configuration - Utility (assuming you are using the latest version of Reliance Edge) - from http://www.datalight.com/reliance-edge, loading your redconf.c - and redconf.h files, and saving them again, replacing the original - files. - */ - #error "Configuration error: your redconf.h is not compatible. Update your redconf files with a compatible version of the configuration utility." + #error "Configuration error: REDCONF_DISCARDS must be defined." #endif #ifndef REDCONF_IMAGE_BUILDER #error "Configuration error: REDCONF_IMAGE_BUILDER must be defined." diff --git a/include/redcoreapi.h b/include/redcoreapi.h index e553e4c..b99d99c 100644 --- a/include/redcoreapi.h +++ b/include/redcoreapi.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/rederrno.h b/include/rederrno.h index 5da5598..f2132e7 100644 --- a/include/rederrno.h +++ b/include/rederrno.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Error values for Reliance Edge APIs diff --git a/include/redexclude.h b/include/redexclude.h index fda7c6b..0175561 100644 --- a/include/redexclude.h +++ b/include/redexclude.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redformat.h b/include/redformat.h index af148b0..d6fa743 100644 --- a/include/redformat.h +++ b/include/redformat.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines the format option structure. diff --git a/include/redfs.h b/include/redfs.h index 5f805ee..012377f 100644 --- a/include/redfs.h +++ b/include/redfs.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redfse.h b/include/redfse.h index 19c98b5..4532a0f 100644 --- a/include/redfse.h +++ b/include/redfse.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Interface for the Reliance Edge FSE API. diff --git a/include/redmacs.h b/include/redmacs.h index 5d5a59c..ea07ba7 100644 --- a/include/redmacs.h +++ b/include/redmacs.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redmditer.h b/include/redmditer.h index 10dde4c..bdba273 100644 --- a/include/redmditer.h +++ b/include/redmditer.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Interfaces for the Reliance Edge metadata iteration utility. diff --git a/include/redmisc.h b/include/redmisc.h index 9b199dc..a871d48 100644 --- a/include/redmisc.h +++ b/include/redmisc.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redosserv.h b/include/redosserv.h index a3a578d..bfcc12f 100644 --- a/include/redosserv.h +++ b/include/redosserv.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redpath.h b/include/redpath.h index 420e238..aa4adec 100644 --- a/include/redpath.h +++ b/include/redpath.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Interfaces of path utilities for the POSIX-like API layer. diff --git a/include/redposix.h b/include/redposix.h index 32cb61a..37401c1 100644 --- a/include/redposix.h +++ b/include/redposix.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Interface for the Reliance Edge POSIX-like API. diff --git a/include/redstat.h b/include/redstat.h index fe87cfb..6a78544 100644 --- a/include/redstat.h +++ b/include/redstat.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines macros and types for red_stat() and red_statvfs(). diff --git a/include/redtests.h b/include/redtests.h index 3c9ce8c..e6cb268 100644 --- a/include/redtests.h +++ b/include/redtests.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Prototypes for Reliance Edge test entry points. diff --git a/include/redtestutils.h b/include/redtestutils.h index c6d9c95..68133ef 100644 --- a/include/redtestutils.h +++ b/include/redtestutils.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Reliance Edge utilities only needed for tests. diff --git a/include/redtoolcmn.h b/include/redtoolcmn.h index 8029b02..a2f4d49 100644 --- a/include/redtoolcmn.h +++ b/include/redtoolcmn.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Interfaces for common-code utilities for tools and tests. diff --git a/include/redtools.h b/include/redtools.h index d78e75a..454f568 100644 --- a/include/redtools.h +++ b/include/redtools.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef REDTOOLS_H #define REDTOOLS_H diff --git a/include/redutils.h b/include/redutils.h index 03681c1..4c5f420 100644 --- a/include/redutils.h +++ b/include/redutils.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/include/redver.h b/include/redver.h index 3452018..e1f7420 100644 --- a/include/redver.h +++ b/include/redver.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Macros for version numbers, build number, and product information. @@ -40,7 +41,7 @@ */ -#define RED_BUILD_NUMBER "900-6" +#define RED_BUILD_NUMBER "900-10" #define RED_KIT_GPL 0U /* Open source GPL kit. */ #define RED_KIT_COMMERCIAL 1U /* Commercially-licensed kit. */ @@ -147,7 +148,7 @@ /** @brief Product copyright. */ -#define RED_PRODUCT_LEGAL "Copyright (c) 2014-2021 Tuxera US Inc. All Rights Reserved Worldwide." +#define RED_PRODUCT_LEGAL "Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide." /** @brief Product patents. diff --git a/include/redvolume.h b/include/redvolume.h index 69c9cca..be8a4a6 100644 --- a/include/redvolume.h +++ b/include/redvolume.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/os/freertos/include/redostypes.h b/os/freertos/include/redostypes.h index 70ea956..e5a1ae5 100644 --- a/os/freertos/include/redostypes.h +++ b/os/freertos/include/redostypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines OS-specific types for use in common code. diff --git a/os/freertos/services/osassert.c b/os/freertos/services/osassert.c index 67fd641..136a505 100644 --- a/os/freertos/services/osassert.c +++ b/os/freertos/services/osassert.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements assertion handling. diff --git a/os/freertos/services/osbdev.c b/os/freertos/services/osbdev.c index 6f8e05a..c778aa9 100644 --- a/os/freertos/services/osbdev.c +++ b/os/freertos/services/osbdev.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements block device I/O. diff --git a/os/freertos/services/osbdev_asfsdmmc.h b/os/freertos/services/osbdev_asfsdmmc.h index f621c49..1acfe4c 100644 --- a/os/freertos/services/osbdev_asfsdmmc.h +++ b/os/freertos/services/osbdev_asfsdmmc.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @brief @file FreeRTOS block device implementation; see osbdev.c for details. diff --git a/os/freertos/services/osbdev_custom.h b/os/freertos/services/osbdev_custom.h index 28e13d4..858d5d6 100644 --- a/os/freertos/services/osbdev_custom.h +++ b/os/freertos/services/osbdev_custom.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @brief @file FreeRTOS block device implementation; see osbdev.c for details. @@ -35,7 +36,7 @@ these functions to tell Reliance Edge how it should be opening, closing, reading from, and writing to your block device (whatever that may be: SD, MMC, eMMC, CF, USB, etc.). This is discussed in detail in the Reliance Edge - Developer's Guide (available at datalight.com/reliance-edge); see the + Developer's Guide (available at tuxera.com/products/reliance-edge); see the _Porting Guide_ chapter, in particular the "Block Device" section, and the _FreeRTOS Integration_ chapter. This directory contains several examples of how the block device can be implemented (these examples are described in the diff --git a/os/freertos/services/osbdev_fatfs.h b/os/freertos/services/osbdev_fatfs.h index c05e1f8..6223525 100644 --- a/os/freertos/services/osbdev_fatfs.h +++ b/os/freertos/services/osbdev_fatfs.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @brief @file FreeRTOS block device implementation; see osbdev.c for details. diff --git a/os/freertos/services/osbdev_ramdisk.h b/os/freertos/services/osbdev_ramdisk.h index 4c886d4..f76aa89 100644 --- a/os/freertos/services/osbdev_ramdisk.h +++ b/os/freertos/services/osbdev_ramdisk.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @brief @file FreeRTOS block device implementation; see osbdev.c for details. diff --git a/os/freertos/services/osbdev_stm32sdio.h b/os/freertos/services/osbdev_stm32sdio.h index 459b57f..777e5f2 100644 --- a/os/freertos/services/osbdev_stm32sdio.h +++ b/os/freertos/services/osbdev_stm32sdio.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @brief @file FreeRTOS block device implementation; see osbdev.c for details. diff --git a/os/freertos/services/osclock.c b/os/freertos/services/osclock.c index 5da143e..d1450f7 100644 --- a/os/freertos/services/osclock.c +++ b/os/freertos/services/osclock.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements real-time clock functions. diff --git a/os/freertos/services/osmutex.c b/os/freertos/services/osmutex.c index 8e8d9cd..f797d57 100644 --- a/os/freertos/services/osmutex.c +++ b/os/freertos/services/osmutex.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a synchronization object to provide mutual exclusion. diff --git a/os/freertos/services/osoutput.c b/os/freertos/services/osoutput.c index f1d3e21..fdac956 100644 --- a/os/freertos/services/osoutput.c +++ b/os/freertos/services/osoutput.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements outputting a character string. diff --git a/os/freertos/services/ostask.c b/os/freertos/services/ostask.c index 76f4035..b0b07c7 100644 --- a/os/freertos/services/ostask.c +++ b/os/freertos/services/ostask.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements task functions. diff --git a/os/freertos/services/ostimestamp.c b/os/freertos/services/ostimestamp.c index 7680a1d..8c3228d 100644 --- a/os/freertos/services/ostimestamp.c +++ b/os/freertos/services/ostimestamp.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements timestamp functions. diff --git a/os/linux/include/redostypes.h b/os/linux/include/redostypes.h index 916df3c..d0e0898 100644 --- a/os/linux/include/redostypes.h +++ b/os/linux/include/redostypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines OS-specific types for use in common code. diff --git a/os/linux/services/osassert.c b/os/linux/services/osassert.c index 8b86fe9..99e429d 100644 --- a/os/linux/services/osassert.c +++ b/os/linux/services/osassert.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements assertion handling. diff --git a/os/linux/services/osbdev.c b/os/linux/services/osbdev.c index af1b297..6d8e715 100644 --- a/os/linux/services/osbdev.c +++ b/os/linux/services/osbdev.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements block device I/O. diff --git a/os/linux/services/osclock.c b/os/linux/services/osclock.c index 83abffd..718636e 100644 --- a/os/linux/services/osclock.c +++ b/os/linux/services/osclock.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements real-time clock functions. diff --git a/os/linux/services/osmutex.c b/os/linux/services/osmutex.c index f9e7f5b..5569b8f 100644 --- a/os/linux/services/osmutex.c +++ b/os/linux/services/osmutex.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a synchronization object to provide mutual exclusion. diff --git a/os/linux/services/osoutput.c b/os/linux/services/osoutput.c index 021d81c..7d7e74f 100644 --- a/os/linux/services/osoutput.c +++ b/os/linux/services/osoutput.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements outputting a character string. diff --git a/os/linux/services/ostask.c b/os/linux/services/ostask.c index ca5df39..5596b27 100644 --- a/os/linux/services/ostask.c +++ b/os/linux/services/ostask.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements task functions. diff --git a/os/linux/services/ostimestamp.c b/os/linux/services/ostimestamp.c index e348975..9e27a72 100644 --- a/os/linux/services/ostimestamp.c +++ b/os/linux/services/ostimestamp.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements timestamp functions. diff --git a/os/linux/tools/fuse.c b/os/linux/tools/fuse.c index 3ab7f0a..9918472 100644 --- a/os/linux/tools/fuse.c +++ b/os/linux/tools/fuse.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a Reliance Edge FUSE (File System in User Space) port diff --git a/os/linux/tools/imgbld_main.c b/os/linux/tools/imgbld_main.c index ac0e3f5..94a7447 100644 --- a/os/linux/tools/imgbld_main.c +++ b/os/linux/tools/imgbld_main.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file */ diff --git a/os/linux/tools/imgbldlinux.c b/os/linux/tools/imgbldlinux.c index dfac70f..eec8243 100644 --- a/os/linux/tools/imgbldlinux.c +++ b/os/linux/tools/imgbldlinux.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements methods of the image builder tool that require Windows diff --git a/os/linux/tools/linuxfmt.c b/os/linux/tools/linuxfmt.c index fd47c6e..a994153 100644 --- a/os/linux/tools/linuxfmt.c +++ b/os/linux/tools/linuxfmt.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a Linux command-line front-end for the Reliance Edge file diff --git a/os/stub/include/redostypes.h b/os/stub/include/redostypes.h index 916df3c..d0e0898 100644 --- a/os/stub/include/redostypes.h +++ b/os/stub/include/redostypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines OS-specific types for use in common code. diff --git a/os/stub/services/osassert.c b/os/stub/services/osassert.c index 9bd56d2..4ff4799 100644 --- a/os/stub/services/osassert.c +++ b/os/stub/services/osassert.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements assertion handling. diff --git a/os/stub/services/osbdev.c b/os/stub/services/osbdev.c index e3c458f..d7ba745 100644 --- a/os/stub/services/osbdev.c +++ b/os/stub/services/osbdev.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements block device I/O. diff --git a/os/stub/services/osclock.c b/os/stub/services/osclock.c index 22d9f5e..07de38a 100644 --- a/os/stub/services/osclock.c +++ b/os/stub/services/osclock.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements real-time clock functions. diff --git a/os/stub/services/osmutex.c b/os/stub/services/osmutex.c index 2c86403..7834c6a 100644 --- a/os/stub/services/osmutex.c +++ b/os/stub/services/osmutex.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a synchronization object to provide mutual exclusion. diff --git a/os/stub/services/osoutput.c b/os/stub/services/osoutput.c index 1db761d..0916b89 100644 --- a/os/stub/services/osoutput.c +++ b/os/stub/services/osoutput.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements outputting a character string. diff --git a/os/stub/services/ostask.c b/os/stub/services/ostask.c index 537e77b..7f04c21 100644 --- a/os/stub/services/ostask.c +++ b/os/stub/services/ostask.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements task functions. diff --git a/os/stub/services/ostimestamp.c b/os/stub/services/ostimestamp.c index f34b6b8..3b562fb 100644 --- a/os/stub/services/ostimestamp.c +++ b/os/stub/services/ostimestamp.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements timestamp functions. diff --git a/os/u-boot/include/redosbdev.h b/os/u-boot/include/redosbdev.h index 5d810c0..8872ebf 100644 --- a/os/u-boot/include/redosbdev.h +++ b/os/u-boot/include/redosbdev.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines OS-specific types for use in common code. diff --git a/os/u-boot/include/redostypes.h b/os/u-boot/include/redostypes.h index 916df3c..d0e0898 100644 --- a/os/u-boot/include/redostypes.h +++ b/os/u-boot/include/redostypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines OS-specific types for use in common code. diff --git a/os/u-boot/services/osassert.c b/os/u-boot/services/osassert.c index 67a9f2b..747eb01 100644 --- a/os/u-boot/services/osassert.c +++ b/os/u-boot/services/osassert.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements assertion handling. diff --git a/os/u-boot/services/osbdev.c b/os/u-boot/services/osbdev.c index c79cc13..146c054 100644 --- a/os/u-boot/services/osbdev.c +++ b/os/u-boot/services/osbdev.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements block device I/O. diff --git a/os/u-boot/services/osclock.c b/os/u-boot/services/osclock.c index 8b8a796..822ca1e 100644 --- a/os/u-boot/services/osclock.c +++ b/os/u-boot/services/osclock.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements real-time clock functions. diff --git a/os/u-boot/services/osmutex.c b/os/u-boot/services/osmutex.c index 16ae60c..9659f5f 100644 --- a/os/u-boot/services/osmutex.c +++ b/os/u-boot/services/osmutex.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /* This file intentionally left blank */ diff --git a/os/u-boot/services/osoutput.c b/os/u-boot/services/osoutput.c index a5b02b0..482e6c4 100644 --- a/os/u-boot/services/osoutput.c +++ b/os/u-boot/services/osoutput.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements outputting a character string. diff --git a/os/u-boot/services/ostask.c b/os/u-boot/services/ostask.c index 16ae60c..9659f5f 100644 --- a/os/u-boot/services/ostask.c +++ b/os/u-boot/services/ostask.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /* This file intentionally left blank */ diff --git a/os/u-boot/services/ostimestamp.c b/os/u-boot/services/ostimestamp.c index 16ae60c..9659f5f 100644 --- a/os/u-boot/services/ostimestamp.c +++ b/os/u-boot/services/ostimestamp.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /* This file intentionally left blank */ diff --git a/os/u-boot/vfs/vfs.c b/os/u-boot/vfs/vfs.c index 62e2f31..7b5acbe 100644 --- a/os/u-boot/vfs/vfs.c +++ b/os/u-boot/vfs/vfs.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements file system interface for u-boot. diff --git a/os/win32/include/redostypes.h b/os/win32/include/redostypes.h index 916df3c..d0e0898 100644 --- a/os/win32/include/redostypes.h +++ b/os/win32/include/redostypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines OS-specific types for use in common code. diff --git a/os/win32/services/osassert.c b/os/win32/services/osassert.c index ca5743f..cbbb295 100644 --- a/os/win32/services/osassert.c +++ b/os/win32/services/osassert.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements assertion handling. diff --git a/os/win32/services/osbdev.c b/os/win32/services/osbdev.c index 8db7eb8..cc935e2 100644 --- a/os/win32/services/osbdev.c +++ b/os/win32/services/osbdev.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements block device I/O. diff --git a/os/win32/services/osclock.c b/os/win32/services/osclock.c index 47f16a3..9e6188d 100644 --- a/os/win32/services/osclock.c +++ b/os/win32/services/osclock.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements real-time clock functions. diff --git a/os/win32/services/osmutex.c b/os/win32/services/osmutex.c index 9dce7f0..d27dd24 100644 --- a/os/win32/services/osmutex.c +++ b/os/win32/services/osmutex.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a synchronization object to provide mutual exclusion. diff --git a/os/win32/services/osoutput.c b/os/win32/services/osoutput.c index 021d81c..7d7e74f 100644 --- a/os/win32/services/osoutput.c +++ b/os/win32/services/osoutput.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements outputting a character string. diff --git a/os/win32/services/ostask.c b/os/win32/services/ostask.c index e518600..9f27f2f 100644 --- a/os/win32/services/ostask.c +++ b/os/win32/services/ostask.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements task functions. diff --git a/os/win32/services/ostimestamp.c b/os/win32/services/ostimestamp.c index f2869a3..6f6d848 100644 --- a/os/win32/services/ostimestamp.c +++ b/os/win32/services/ostimestamp.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements timestamp functions. diff --git a/os/win32/tools/imgbld_main.c b/os/win32/tools/imgbld_main.c index ae501f8..2e0aa1e 100644 --- a/os/win32/tools/imgbld_main.c +++ b/os/win32/tools/imgbld_main.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a Win32 command-line image builder tool diff --git a/os/win32/tools/imgbldwin.c b/os/win32/tools/imgbldwin.c index 3f3adac..506524f 100644 --- a/os/win32/tools/imgbldwin.c +++ b/os/win32/tools/imgbldwin.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements methods of the image builder tool that require Windows diff --git a/os/win32/tools/winfmt.c b/os/win32/tools/winfmt.c index 9312975..e3c85f1 100644 --- a/os/win32/tools/winfmt.c +++ b/os/win32/tools/winfmt.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a Win32 command-line front-end for the Reliance Edge file diff --git a/os/win32/tools/wintlcmn.c b/os/win32/tools/wintlcmn.c index 864b432..c072e43 100644 --- a/os/win32/tools/wintlcmn.c +++ b/os/win32/tools/wintlcmn.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements certain shared methods for Win32 command line tools. diff --git a/os/win32/tools/wintlcmn.h b/os/win32/tools/wintlcmn.h index 11f1dd6..a849b5c 100644 --- a/os/win32/tools/wintlcmn.h +++ b/os/win32/tools/wintlcmn.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Interfaces for certain shared methods for Win32 command line tools. diff --git a/posix/path.c b/posix/path.c index 1ce3c86..aef5a06 100644 --- a/posix/path.c +++ b/posix/path.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements path utilities for the POSIX-like API layer. diff --git a/posix/posix.c b/posix/posix.c index 9aa97b4..1d39c04 100644 --- a/posix/posix.c +++ b/posix/posix.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implementation of the Reliance Edge POSIX-like API. diff --git a/projects/freertos/st/stm324xg-eval/host/redtypes.h b/projects/freertos/st/stm324xg-eval/host/redtypes.h index 477b5ce..0a751e4 100644 --- a/projects/freertos/st/stm324xg-eval/host/redtypes.h +++ b/projects/freertos/st/stm324xg-eval/host/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/freertos/st/stm324xg-eval/src/hooks.c b/projects/freertos/st/stm324xg-eval/src/hooks.c index e8281f2..8c90cb1 100644 --- a/projects/freertos/st/stm324xg-eval/src/hooks.c +++ b/projects/freertos/st/stm324xg-eval/src/hooks.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief FreeRTOS assert and hook implementations. diff --git a/projects/freertos/st/stm324xg-eval/src/malloc.c b/projects/freertos/st/stm324xg-eval/src/malloc.c index 1c6eae6..2d5f93f 100644 --- a/projects/freertos/st/stm324xg-eval/src/malloc.c +++ b/projects/freertos/st/stm324xg-eval/src/malloc.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /* @file @brief Wrapper implementation of the C standard memory allocation functions diff --git a/projects/freertos/st/stm324xg-eval/src/osoutput.c b/projects/freertos/st/stm324xg-eval/src/osoutput.c index 06466f7..97a2a50 100644 --- a/projects/freertos/st/stm324xg-eval/src/osoutput.c +++ b/projects/freertos/st/stm324xg-eval/src/osoutput.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements outputting a character string. This implementation is diff --git a/projects/freertos/st/stm324xg-eval/src/redtypes.h b/projects/freertos/st/stm324xg-eval/src/redtypes.h index 3fe14bc..8969523 100644 --- a/projects/freertos/st/stm324xg-eval/src/redtypes.h +++ b/projects/freertos/st/stm324xg-eval/src/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/linux/fsstress_main.c b/projects/linux/fsstress_main.c index 5206b82..f964ef7 100644 --- a/projects/linux/fsstress_main.c +++ b/projects/linux/fsstress_main.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include #include diff --git a/projects/linux/host/redtypes.h b/projects/linux/host/redtypes.h index 477b5ce..0a751e4 100644 --- a/projects/linux/host/redtypes.h +++ b/projects/linux/host/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/linux/redtypes.h b/projects/linux/redtypes.h index 3fe14bc..8969523 100644 --- a/projects/linux/redtypes.h +++ b/projects/linux/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/newproj/host/redtypes.h b/projects/newproj/host/redtypes.h index 477b5ce..0a751e4 100644 --- a/projects/newproj/host/redtypes.h +++ b/projects/newproj/host/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/newproj/redtypes.h b/projects/newproj/redtypes.h index 3fe14bc..8969523 100644 --- a/projects/newproj/redtypes.h +++ b/projects/newproj/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/u-boot/redtypes.h b/projects/u-boot/redtypes.h index 32ceeac..239c6d6 100644 --- a/projects/u-boot/redtypes.h +++ b/projects/u-boot/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/win32/fsstress_main.c b/projects/win32/fsstress_main.c index 7f41231..1389efb 100644 --- a/projects/win32/fsstress_main.c +++ b/projects/win32/fsstress_main.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include #include diff --git a/projects/win32/host/redtypes.h b/projects/win32/host/redtypes.h index 477b5ce..0a751e4 100644 --- a/projects/win32/host/redtypes.h +++ b/projects/win32/host/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/projects/win32/redtypes.h b/projects/win32/redtypes.h index 2da30f8..dcf151b 100644 --- a/projects/win32/redtypes.h +++ b/projects/win32/redtypes.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines basic types used by Reliance Edge. diff --git a/tests/posix/fmtopt.c b/tests/posix/fmtopt.c index 957830b..d889110 100644 --- a/tests/posix/fmtopt.c +++ b/tests/posix/fmtopt.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements test utilites for format options. diff --git a/tests/posix/redposixcompat.h b/tests/posix/redposixcompat.h index 7cabd60..7dafa44 100644 --- a/tests/posix/redposixcompat.h +++ b/tests/posix/redposixcompat.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Defines macros which make the Reliance Edge POSIX-like API look more diff --git a/tests/util/atoi.c b/tests/util/atoi.c index 67e799c..3ebd42f 100644 --- a/tests/util/atoi.c +++ b/tests/util/atoi.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements utilities that convert strings to numbers. diff --git a/tests/util/math.c b/tests/util/math.c index 9f5a08f..6f4ebce 100644 --- a/tests/util/math.c +++ b/tests/util/math.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements routines for certain 64-bit math operations and simulated diff --git a/tests/util/printf.c b/tests/util/printf.c index 439ca7a..2fd7122 100644 --- a/tests/util/printf.c +++ b/tests/util/printf.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements functions for printing. diff --git a/tests/util/rand.c b/tests/util/rand.c index 64b80e5..580e4f1 100644 --- a/tests/util/rand.c +++ b/tests/util/rand.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a random number generator. diff --git a/tools/config/README.txt b/tools/config/README.txt index 230dd16..993fa53 100644 --- a/tools/config/README.txt +++ b/tools/config/README.txt @@ -4,11 +4,11 @@ Project ------- The Configuration Utility is a Qt project, built in Qt Creator 3 or later, open -source edition. The compiled executable for Windows may be downloaded from -http://www.datalight.com/reliance-edge. The Visual C++ 2010 runtime libraries -can be downloaded from Microsoft with the following link. +source edition. The compiled executable for Windows can be obtained by emailing +support@tuxera.com. The Visual C++ 2010 runtime libraries can be downloaded +from Microsoft with the following link. -https://www.microsoft.com/en-us/download/details.aspx?id=5555 +https://docs.microsoft.com/en-US/cpp/windows/latest-supported-vc-redist?view=msvc-170 Building ======== diff --git a/tools/config/allsettings.cpp b/tools/config/allsettings.cpp index 20ac8d3..79aaf88 100644 --- a/tools/config/allsettings.cpp +++ b/tools/config/allsettings.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "volumesettings.h" #include "allsettings.h" diff --git a/tools/config/allsettings.h b/tools/config/allsettings.h index 8f2023a..52e2ccc 100644 --- a/tools/config/allsettings.h +++ b/tools/config/allsettings.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef ALLSETTINGS_H #define ALLSETTINGS_H diff --git a/tools/config/control/application.cpp b/tools/config/control/application.cpp index ca844a0..91be87c 100644 --- a/tools/config/control/application.cpp +++ b/tools/config/control/application.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include #include diff --git a/tools/config/control/application.h b/tools/config/control/application.h index 53c84ac..b3c3cc1 100644 --- a/tools/config/control/application.h +++ b/tools/config/control/application.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef APPLICATION_H #define APPLICATION_H diff --git a/tools/config/control/input.cpp b/tools/config/control/input.cpp index 8188369..bf77e8d 100644 --- a/tools/config/control/input.cpp +++ b/tools/config/control/input.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/control/input.h b/tools/config/control/input.h index 99d4ba2..815da34 100644 --- a/tools/config/control/input.h +++ b/tools/config/control/input.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef INPUT_H #define INPUT_H diff --git a/tools/config/control/output.cpp b/tools/config/control/output.cpp index 723dfa6..a70d4ad 100644 --- a/tools/config/control/output.cpp +++ b/tools/config/control/output.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "ui/errordialog.h" #include "debug.h" diff --git a/tools/config/control/output.h b/tools/config/control/output.h index b81e22d..ee9609b 100644 --- a/tools/config/control/output.h +++ b/tools/config/control/output.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef OUTPUT_H #define OUTPUT_H diff --git a/tools/config/include/debug.h b/tools/config/include/debug.h index 6698c36..292b5a6 100644 --- a/tools/config/include/debug.h +++ b/tools/config/include/debug.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef DEBUG_H #define DEBUG_H diff --git a/tools/config/include/validity.h b/tools/config/include/validity.h index e78b993..9a44b4a 100644 --- a/tools/config/include/validity.h +++ b/tools/config/include/validity.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef VALIDITY_H #define VALIDITY_H diff --git a/tools/config/include/version.h b/tools/config/include/version.h index 58a6328..545fe06 100644 --- a/tools/config/include/version.h +++ b/tools/config/include/version.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef VERSION_H #define VERSION_H diff --git a/tools/config/main.cpp b/tools/config/main.cpp index 9791dfa..80cc17c 100644 --- a/tools/config/main.cpp +++ b/tools/config/main.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "control/application.h" diff --git a/tools/config/settings/boolsetting.cpp b/tools/config/settings/boolsetting.cpp index 782f92c..470e7e1 100644 --- a/tools/config/settings/boolsetting.cpp +++ b/tools/config/settings/boolsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/boolsetting.h b/tools/config/settings/boolsetting.h index be3ba9d..39ba9fa 100644 --- a/tools/config/settings/boolsetting.h +++ b/tools/config/settings/boolsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef BOOLSETTING_H #define BOOLSETTING_H diff --git a/tools/config/settings/cbsetting.cpp b/tools/config/settings/cbsetting.cpp index 13115ea..c063921 100644 --- a/tools/config/settings/cbsetting.cpp +++ b/tools/config/settings/cbsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/cbsetting.h b/tools/config/settings/cbsetting.h index 06787e2..57fe5dd 100644 --- a/tools/config/settings/cbsetting.h +++ b/tools/config/settings/cbsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef CBSETTING_H #define CBSETTING_H diff --git a/tools/config/settings/checkedsbsetting.cpp b/tools/config/settings/checkedsbsetting.cpp index f204f06..ba4429e 100644 --- a/tools/config/settings/checkedsbsetting.cpp +++ b/tools/config/settings/checkedsbsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/checkedsbsetting.h b/tools/config/settings/checkedsbsetting.h index 2668b84..ae17b0d 100644 --- a/tools/config/settings/checkedsbsetting.h +++ b/tools/config/settings/checkedsbsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef CHECKEDSPSETTING_H #define CHECKEDSPSETTING_H diff --git a/tools/config/settings/cmbintsetting.cpp b/tools/config/settings/cmbintsetting.cpp index afe4326..21b21f4 100644 --- a/tools/config/settings/cmbintsetting.cpp +++ b/tools/config/settings/cmbintsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/cmbintsetting.h b/tools/config/settings/cmbintsetting.h index f226237..05f432a 100644 --- a/tools/config/settings/cmbintsetting.h +++ b/tools/config/settings/cmbintsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef CMBINTSETTING_H #define CMBINTSETTING_H diff --git a/tools/config/settings/cmbstrsetting.cpp b/tools/config/settings/cmbstrsetting.cpp index e8e2b31..908c190 100644 --- a/tools/config/settings/cmbstrsetting.cpp +++ b/tools/config/settings/cmbstrsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/cmbstrsetting.h b/tools/config/settings/cmbstrsetting.h index ef4ae30..9ca2ed7 100644 --- a/tools/config/settings/cmbstrsetting.h +++ b/tools/config/settings/cmbstrsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef CMBSETTING_H #define CMBSETTING_H diff --git a/tools/config/settings/dindirreporter.cpp b/tools/config/settings/dindirreporter.cpp index 953e9f0..4c15783 100644 --- a/tools/config/settings/dindirreporter.cpp +++ b/tools/config/settings/dindirreporter.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "allsettings.h" #include "validators.h" diff --git a/tools/config/settings/dindirreporter.h b/tools/config/settings/dindirreporter.h index ec9b301..ccfd07f 100644 --- a/tools/config/settings/dindirreporter.h +++ b/tools/config/settings/dindirreporter.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef DINDIRREPORTER_H #define DINDIRREPORTER_H diff --git a/tools/config/settings/intsetting.cpp b/tools/config/settings/intsetting.cpp index 099975a..07d4a02 100644 --- a/tools/config/settings/intsetting.cpp +++ b/tools/config/settings/intsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/intsetting.h b/tools/config/settings/intsetting.h index bfd2151..91990fa 100644 --- a/tools/config/settings/intsetting.h +++ b/tools/config/settings/intsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef INTSETTING_H #define INTSETTING_H diff --git a/tools/config/settings/lesetting.cpp b/tools/config/settings/lesetting.cpp index 4e617f3..2b1562d 100644 --- a/tools/config/settings/lesetting.cpp +++ b/tools/config/settings/lesetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "lesetting.h" diff --git a/tools/config/settings/lesetting.h b/tools/config/settings/lesetting.h index d3664f6..ca6727a 100644 --- a/tools/config/settings/lesetting.h +++ b/tools/config/settings/lesetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef LESETTING_H #define LESETTING_H diff --git a/tools/config/settings/limitreporter.cpp b/tools/config/settings/limitreporter.cpp index 8b01e6e..5b992b9 100644 --- a/tools/config/settings/limitreporter.cpp +++ b/tools/config/settings/limitreporter.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "allsettings.h" #include "validators.h" diff --git a/tools/config/settings/limitreporter.h b/tools/config/settings/limitreporter.h index 034c82b..2fcc65f 100644 --- a/tools/config/settings/limitreporter.h +++ b/tools/config/settings/limitreporter.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef LIMITREPORTER_H #define LIMITREPORTER_H diff --git a/tools/config/settings/notifiable.h b/tools/config/settings/notifiable.h index 39d66b5..40f979a 100644 --- a/tools/config/settings/notifiable.h +++ b/tools/config/settings/notifiable.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef NOTIFIABLE_H #define NOTIFIABLE_H diff --git a/tools/config/settings/pathsepsetting.cpp b/tools/config/settings/pathsepsetting.cpp index 49d7e63..96f9263 100644 --- a/tools/config/settings/pathsepsetting.cpp +++ b/tools/config/settings/pathsepsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "pathsepsetting.h" diff --git a/tools/config/settings/pathsepsetting.h b/tools/config/settings/pathsepsetting.h index 6864022..4a86565 100644 --- a/tools/config/settings/pathsepsetting.h +++ b/tools/config/settings/pathsepsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef PATHSEPSETTING_H #define PATHSEPSETTING_H diff --git a/tools/config/settings/rbtnsetting.cpp b/tools/config/settings/rbtnsetting.cpp index 0335233..faffbf8 100644 --- a/tools/config/settings/rbtnsetting.cpp +++ b/tools/config/settings/rbtnsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/rbtnsetting.h b/tools/config/settings/rbtnsetting.h index 63dc98e..a9bf358 100644 --- a/tools/config/settings/rbtnsetting.h +++ b/tools/config/settings/rbtnsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef RBTNSETTING_H #define RBTNSETTING_H diff --git a/tools/config/settings/sbsetting.cpp b/tools/config/settings/sbsetting.cpp index d29408b..cd438f2 100644 --- a/tools/config/settings/sbsetting.cpp +++ b/tools/config/settings/sbsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/sbsetting.h b/tools/config/settings/sbsetting.h index 492d192..10a75d5 100644 --- a/tools/config/settings/sbsetting.h +++ b/tools/config/settings/sbsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef SPSETTING_H #define SPSETTING_H diff --git a/tools/config/settings/setting.h b/tools/config/settings/setting.h index 6dd44ce..00fa5b4 100644 --- a/tools/config/settings/setting.h +++ b/tools/config/settings/setting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef SETTINGS_H #define SETTINGS_H diff --git a/tools/config/settings/settingbase.h b/tools/config/settings/settingbase.h index 66f6072..079c3f5 100644 --- a/tools/config/settings/settingbase.h +++ b/tools/config/settings/settingbase.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef SETTINGBASE_H #define SETTINGBASE_H diff --git a/tools/config/settings/strsetting.cpp b/tools/config/settings/strsetting.cpp index afe3989..e01e56b 100644 --- a/tools/config/settings/strsetting.cpp +++ b/tools/config/settings/strsetting.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/settings/strsetting.h b/tools/config/settings/strsetting.h index 8d48bd6..d6cbd2d 100644 --- a/tools/config/settings/strsetting.h +++ b/tools/config/settings/strsetting.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef STRSETTING_H #define STRSETTING_H diff --git a/tools/config/ui/configwindow.cpp b/tools/config/ui/configwindow.cpp index 874120c..7073980 100644 --- a/tools/config/ui/configwindow.cpp +++ b/tools/config/ui/configwindow.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include #include @@ -473,8 +474,8 @@ void ConfigWindow::actionAbout_clicked() "

" "This utility is designed to be used to configure the Reliance " "Edge file system. Documentation may be downloaded from " - "" - "datalight.com/reliance-edge. For email support, contact " + "" + "tuxera.com/products/reliance-edge. For email support, contact " "" "support@tuxera.com." ); diff --git a/tools/config/ui/configwindow.h b/tools/config/ui/configwindow.h index 2f76a6d..2fe9eba 100644 --- a/tools/config/ui/configwindow.h +++ b/tools/config/ui/configwindow.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef CONFIGWINDOW_H #define CONFIGWINDOW_H diff --git a/tools/config/ui/errordialog.cpp b/tools/config/ui/errordialog.cpp index 961d6ef..aa76caf 100644 --- a/tools/config/ui/errordialog.cpp +++ b/tools/config/ui/errordialog.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include #include diff --git a/tools/config/ui/errordialog.h b/tools/config/ui/errordialog.h index e2a149a..ad2d938 100644 --- a/tools/config/ui/errordialog.h +++ b/tools/config/ui/errordialog.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef ERRORDIALOG_H #define ERRORDIALOG_H diff --git a/tools/config/ui/filedialog.cpp b/tools/config/ui/filedialog.cpp index d96f8aa..c3a3b86 100644 --- a/tools/config/ui/filedialog.cpp +++ b/tools/config/ui/filedialog.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include "filedialog.h" #include diff --git a/tools/config/ui/filedialog.h b/tools/config/ui/filedialog.h index 443cb6e..3da96b7 100644 --- a/tools/config/ui/filedialog.h +++ b/tools/config/ui/filedialog.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef FILEDIALOG_H #define FILEDIALOG_H diff --git a/tools/config/ui/warningbtn.cpp b/tools/config/ui/warningbtn.cpp index 4d6eeec..dbdd58e 100644 --- a/tools/config/ui/warningbtn.cpp +++ b/tools/config/ui/warningbtn.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/ui/warningbtn.h b/tools/config/ui/warningbtn.h index c2e78ab..92c39e8 100644 --- a/tools/config/ui/warningbtn.h +++ b/tools/config/ui/warningbtn.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef WARNINGBTN_H #define WARNINGBTN_H diff --git a/tools/config/validators.cpp b/tools/config/validators.cpp index 427a4ef..6da4ae0 100644 --- a/tools/config/validators.cpp +++ b/tools/config/validators.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /// /// \file validators.h diff --git a/tools/config/validators.h b/tools/config/validators.h index 22c96c4..9bb430b 100644 --- a/tools/config/validators.h +++ b/tools/config/validators.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /// /// \file validators.h diff --git a/tools/config/volumesettings.cpp b/tools/config/volumesettings.cpp index 3412443..9b80505 100644 --- a/tools/config/volumesettings.cpp +++ b/tools/config/volumesettings.cpp @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #include diff --git a/tools/config/volumesettings.h b/tools/config/volumesettings.h index 7a2a744..17ce38b 100644 --- a/tools/config/volumesettings.h +++ b/tools/config/volumesettings.h @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ #ifndef VOLUMESETTINGS_H #define VOLUMESETTINGS_H diff --git a/tools/imgbld/ibcommon.c b/tools/imgbld/ibcommon.c index 2fae02d..45f143f 100644 --- a/tools/imgbld/ibcommon.c +++ b/tools/imgbld/ibcommon.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief implements image builder methods shared between POSIX and FSE diff --git a/tools/imgbld/ibfse.c b/tools/imgbld/ibfse.c index aac2a2b..db53748 100644 --- a/tools/imgbld/ibfse.c +++ b/tools/imgbld/ibfse.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements methods of the image builder tool specific to the FSE diff --git a/tools/imgbld/ibposix.c b/tools/imgbld/ibposix.c index 9d5ed21..cbfd45a 100644 --- a/tools/imgbld/ibposix.c +++ b/tools/imgbld/ibposix.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements methods of the image builder tool specific to the POSIX diff --git a/tools/imgbld/imgbld.c b/tools/imgbld/imgbld.c index 535e390..ccb3c6d 100644 --- a/tools/imgbld/imgbld.c +++ b/tools/imgbld/imgbld.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a Win32 command-line image builder tool diff --git a/tools/mditer.c b/tools/mditer.c index 0d0a900..b337008 100644 --- a/tools/mditer.c +++ b/tools/mditer.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Utility for iterating Reliance Edge committed-state metadata. diff --git a/tools/toolcmn.c b/tools/toolcmn.c index 2f2857d..ac9b742 100644 --- a/tools/toolcmn.c +++ b/tools/toolcmn.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements common-code utilities for tools and tests. diff --git a/util/bitmap.c b/util/bitmap.c index 5f3ca38..5caa0de 100644 --- a/util/bitmap.c +++ b/util/bitmap.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements utilities for working with bitmaps. diff --git a/util/crc.c b/util/crc.c index 0b4f090..a801b23 100644 --- a/util/crc.c +++ b/util/crc.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements utilities for calculating CRC-32 checksums. diff --git a/util/endian.c b/util/endian.c index 583fc38..5459143 100644 --- a/util/endian.c +++ b/util/endian.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements utilities for performing endian swaps. diff --git a/util/heap.c b/util/heap.c index 0275eed..e4546e6 100644 --- a/util/heap.c +++ b/util/heap.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a heap for memory allocation. diff --git a/util/memory.c b/util/memory.c index 7e48137..13a09b8 100644 --- a/util/memory.c +++ b/util/memory.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Default implementations of memory manipulation functions. diff --git a/util/namelen.c b/util/namelen.c index 8d7014a..1b59990 100644 --- a/util/namelen.c +++ b/util/namelen.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a utility to find the length of a name. diff --git a/util/sign.c b/util/sign.c index 8012a43..68ea203 100644 --- a/util/sign.c +++ b/util/sign.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Implements a sign on message. diff --git a/util/string.c b/util/string.c index 57d2bfe..a77b4d6 100644 --- a/util/string.c +++ b/util/string.c @@ -1,6 +1,6 @@ /* ----> DO NOT REMOVE THE FOLLOWING NOTICE <---- - Copyright (c) 2014-2021 Tuxera US Inc. + Copyright (c) 2014-2022 Tuxera US Inc. All Rights Reserved Worldwide. This program is free software; you can redistribute it and/or modify @@ -17,10 +17,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ /* Businesses and individuals that for commercial or other reasons cannot - comply with the terms of the GPLv2 license must obtain a commercial license - before incorporating Reliance Edge into proprietary software for - distribution in any form. Visit http://www.datalight.com/reliance-edge for - more information. + comply with the terms of the GPLv2 license must obtain a commercial + license before incorporating Reliance Edge into proprietary software + for distribution in any form. + + Visit https://www.tuxera.com/products/reliance-edge/ for more information. */ /** @file @brief Default implementations of string manipulation functions.