Changeset 48664 in vbox
- Timestamp:
- Sep 24, 2013 8:26:56 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89276
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/BiosCommonCode/MakeAlternativeSource.cpp
r47937 r48664 204 204 * copyright notice. 205 205 */ 206 bool fNeedLgplDisclaimer = false; 206 207 PBIOSOBJFILE pObjFile; 207 208 RTListForEach(&g_ObjList, pObjFile, BIOSOBJFILE, Node) … … 259 260 fSeenCopyright = true; 260 261 262 /* Detect LGPL. */ 263 if (strstr(psz, "LGPL")) 264 fNeedLgplDisclaimer = true; 265 261 266 fRc = outputPrintf("; %s\n", psz) && fRc; 262 267 } … … 267 272 } 268 273 } 274 275 /* 276 * Add Oracle LGPL disclaimer. 277 */ 278 if (fNeedLgplDisclaimer) 279 outputPrintf("\n" 280 ";\n" 281 "; Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice\n" 282 "; other than GPL or LGPL is available it will apply instead, Oracle elects to use only\n" 283 "; the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where\n" 284 "; a choice of LGPL license versions is made available with the language indicating\n" 285 "; that LGPLv2 or any later version may be used, or where a choice of which version\n" 286 "; of the LGPL is applied is otherwise unspecified.\n" 287 ";\n" 288 "\n"); 269 289 270 290 /* -
trunk/src/VBox/Devices/Graphics/BIOS/VBoxVgaBiosAlternative.asm
r48619 r48664 151 151 ; // 152 152 ; // ============================================================================================ 153 154 155 ; 156 ; Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice 157 ; other than GPL or LGPL is available it will apply instead, Oracle elects to use only 158 ; the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where 159 ; a choice of LGPL license versions is made available with the language indicating 160 ; that LGPLv2 or any later version may be used, or where a choice of which version 161 ; of the LGPL is applied is otherwise unspecified. 162 ; 153 163 154 164
Note:
See TracChangeset
for help on using the changeset viewer.