[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-changelog] [xen master] Replace FSF street address with canonical URL



commit 443701ef0c7ff30872e27419cf4356fb6bdb4059
Author:     Ian Campbell <ian.campbell@xxxxxxxxxx>
AuthorDate: Wed Jul 29 11:00:36 2015 +0100
Commit:     Ian Campbell <ian.campbell@xxxxxxxxxx>
CommitDate: Wed Jul 29 11:14:07 2015 +0100

    Replace FSF street address with canonical URL
    
    As recommended in http://www.gnu.org/licenses/gpl-howto.en.html.
    
    This is the result of:
    $ git grep -El Mass\|Temple\|Franklin | xargs ./fsf.pl
    
    Where fsf.pl is:
        #!/usr/bin/perl -w -pi.bak -0777
        my $repl = 'If not, see <http://www.gnu.org/licenses/>.';
        my $br = qr/(?:\s*\n\s*(?:[\*\#]|\/\/|\.\\" )?\s*|\s+)/;
    
        my $inwt = 
qr/[Ii]f${br}not,${br}write${br}(?:to${br})?the${br}Free${br}Software${br}Foundation,(?:${br}Inc\.,)?/;
    
        my $mass = 
qr/675${br}Mass${br}Ave,?${br}Cambridge,?${br}MA${br}02139,?${br}USA,?\.?/;
        my $franklin = qr/51${br}Franklin${br}St(?:reet)?(?:,${br}| - 
)Fifth${br}Floor,?${br}Boston,?${br}MA,?${br}02110-1301,?${br}USA,?\.?/;
        my $temple = qr/59${br}Temple${br}Place(?:,${br}| - 
)Suite${br}330,?${br}Boston,?${br}MA,?${br}021110?-1307,?${br}USA,?\.?/;
    
        s|$inwt$br$mass|$repl|m;
        s|$inwt$br$franklin|$repl|m;
        s|$inwt$br$temple|$repl|m;
    
    The only remaining mentions of these addresses are in COPYING files which I
    haven't touched.
    
    Some of the changed files are imports from elsewhere, however
    filtering them out is tricky, I think it is tolerable to have these
    files be modified here and then perhaps reverted on the next sync,
    since it's only 1-2 lines and obvious what is going on.
    
    Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
---
 COPYING                                            |    3 +--
 m4/pkg.m4                                          |    3 +--
 m4/systemd.m4                                      |    3 +--
 stubdom/vtpmmgr/tpmrsa.c                           |    3 +--
 stubdom/vtpmmgr/tpmrsa.h                           |    3 +--
 tools/blktap2/drivers/libaio-compat.h              |    4 +---
 tools/configure                                    |    6 ++----
 tools/console/client/main.c                        |    3 +--
 tools/console/daemon/io.c                          |    3 +--
 tools/console/daemon/io.h                          |    3 +--
 tools/console/daemon/main.c                        |    3 +--
 tools/console/daemon/utils.c                       |    3 +--
 tools/console/daemon/utils.h                       |    3 +--
 tools/debugger/gdbsx/gx/gx.h                       |    4 +---
 tools/debugger/gdbsx/gx/gx_comm.c                  |    8 ++------
 tools/debugger/gdbsx/gx/gx_local.c                 |    4 +---
 tools/debugger/gdbsx/gx/gx_main.c                  |    4 +---
 tools/debugger/gdbsx/gx/gx_utils.c                 |    4 +---
 tools/debugger/gdbsx/gx/xg_dummy.c                 |    4 +---
 tools/debugger/gdbsx/xg/xg_main.c                  |    4 +---
 tools/debugger/gdbsx/xg/xg_public.h                |    4 +---
 tools/firmware/hvmloader/32bitbios_support.c       |    3 +--
 tools/firmware/hvmloader/Makefile                  |    3 +--
 tools/firmware/hvmloader/acpi/Makefile             |    3 +--
 tools/firmware/hvmloader/acpi/acpi2_0.h            |    3 +--
 tools/firmware/hvmloader/acpi/build.c              |    3 +--
 tools/firmware/hvmloader/acpi/dsdt.asl             |    3 +--
 tools/firmware/hvmloader/acpi/ssdt_pm.asl          |    3 +--
 tools/firmware/hvmloader/acpi/ssdt_s3.asl          |    3 +--
 tools/firmware/hvmloader/acpi/ssdt_s4.asl          |    3 +--
 tools/firmware/hvmloader/acpi/ssdt_tpm.asl         |    3 +--
 tools/firmware/hvmloader/acpi/static_tables.c      |    3 +--
 tools/firmware/hvmloader/cacheattr.c               |    3 +--
 tools/firmware/hvmloader/e820.c                    |    3 +--
 tools/firmware/hvmloader/hvmloader.c               |    3 +--
 tools/firmware/hvmloader/mkhex                     |    3 +--
 tools/firmware/hvmloader/mp_tables.c               |    3 +--
 tools/firmware/hvmloader/optionroms.c              |    3 +--
 tools/firmware/hvmloader/ovmf.c                    |    3 +--
 tools/firmware/hvmloader/pci.c                     |    3 +--
 tools/firmware/hvmloader/pir_types.h               |    3 +--
 tools/firmware/hvmloader/rombios.c                 |    3 +--
 tools/firmware/hvmloader/seabios.c                 |    3 +--
 tools/firmware/hvmloader/smbios.c                  |    3 +--
 tools/firmware/hvmloader/smbios_types.h            |    3 +--
 tools/firmware/hvmloader/smp.c                     |    3 +--
 tools/firmware/hvmloader/tests.c                   |    3 +--
 tools/firmware/hvmloader/util.c                    |    3 +--
 tools/firmware/rombios/32bit/32bitbios.c           |    3 +--
 tools/firmware/rombios/32bit/mkhex                 |    3 +--
 tools/firmware/rombios/32bit/pmm.c                 |    3 +--
 tools/firmware/rombios/32bit/tcgbios/tcgbios.c     |    3 +--
 tools/firmware/rombios/32bit/tcgbios/tpm_drivers.c |    3 +--
 tools/firmware/rombios/32bit/util.c                |    3 +--
 tools/firmware/rombios/32bitgateway.c              |    3 +--
 tools/firmware/rombios/apmbios.S                   |    3 +--
 tools/firmware/rombios/rombios.c                   |    3 +--
 tools/firmware/rombios/rombios.h                   |    3 +--
 tools/firmware/rombios/tcgbios.c                   |    3 +--
 tools/firmware/vgabios/COPYING                     |    3 +--
 tools/firmware/vgabios/biossums.c                  |    3 +--
 tools/firmware/vgabios/clext.c                     |    3 +--
 tools/firmware/vgabios/vbe.c                       |    3 +--
 tools/firmware/vgabios/vgabios.c                   |    3 +--
 tools/hotplug/Linux/block-common.sh                |    3 +--
 tools/hotplug/Linux/block-drbd-probe               |    3 +--
 tools/hotplug/Linux/external-device-migrate        |    3 +--
 tools/hotplug/Linux/locking.sh                     |    3 +--
 tools/hotplug/Linux/logging.sh                     |    3 +--
 tools/hotplug/Linux/vif-common.sh                  |    3 +--
 tools/hotplug/Linux/xen-hotplug-common.sh.in       |    3 +--
 tools/hotplug/Linux/xen-network-common.sh          |    3 +--
 tools/hotplug/Linux/xen-script-common.sh           |    3 +--
 tools/libfsimage/ext2fs/fsys_ext2fs.c              |    3 +--
 tools/libfsimage/fat/fat.h                         |    3 +--
 tools/libfsimage/fat/fsys_fat.c                    |    3 +--
 tools/libfsimage/iso9660/fsys_iso9660.c            |    3 +--
 tools/libfsimage/iso9660/iso9660.h                 |    3 +--
 tools/libfsimage/reiserfs/fsys_reiserfs.c          |    3 +--
 tools/libfsimage/ufs/fsys_ufs.c                    |    3 +--
 tools/libfsimage/xfs/fsys_xfs.c                    |    3 +--
 tools/libfsimage/xfs/xfs.h                         |    3 +--
 tools/libfsimage/zfs/Makefile                      |    3 +--
 tools/libfsimage/zfs/filesys.h                     |    3 +--
 tools/libfsimage/zfs/fsi_zfs.c                     |    3 +--
 tools/libfsimage/zfs/fsi_zfs.h                     |    3 +--
 tools/libfsimage/zfs/fsys_zfs.c                    |    3 +--
 tools/libfsimage/zfs/fsys_zfs.h                    |    3 +--
 tools/libfsimage/zfs/mb_info.h                     |    3 +--
 tools/libfsimage/zfs/shared.h                      |    3 +--
 tools/libfsimage/zfs/zfs-include/dmu.h             |    3 +--
 tools/libfsimage/zfs/zfs-include/dmu_objset.h      |    3 +--
 tools/libfsimage/zfs/zfs-include/dnode.h           |    3 +--
 tools/libfsimage/zfs/zfs-include/dsl_dataset.h     |    3 +--
 tools/libfsimage/zfs/zfs-include/dsl_dir.h         |    3 +--
 tools/libfsimage/zfs/zfs-include/sa_impl.h         |    3 +--
 tools/libfsimage/zfs/zfs-include/spa.h             |    3 +--
 tools/libfsimage/zfs/zfs-include/uberblock_impl.h  |    3 +--
 tools/libfsimage/zfs/zfs-include/vdev_impl.h       |    3 +--
 tools/libfsimage/zfs/zfs-include/zap_impl.h        |    3 +--
 tools/libfsimage/zfs/zfs-include/zap_leaf.h        |    3 +--
 tools/libfsimage/zfs/zfs-include/zfs.h             |    3 +--
 tools/libfsimage/zfs/zfs-include/zfs_acl.h         |    3 +--
 tools/libfsimage/zfs/zfs-include/zfs_znode.h       |    3 +--
 tools/libfsimage/zfs/zfs-include/zil.h             |    3 +--
 tools/libfsimage/zfs/zfs-include/zio.h             |    3 +--
 tools/libfsimage/zfs/zfs-include/zio_checksum.h    |    3 +--
 tools/libfsimage/zfs/zfs_fletcher.c                |    3 +--
 tools/libfsimage/zfs/zfs_lzjb.c                    |    3 +--
 tools/libfsimage/zfs/zfs_sha256.c                  |    3 +--
 tools/libvchan/init.c                              |    3 +--
 tools/libvchan/io.c                                |    3 +--
 tools/libvchan/libxenvchan.h                       |    3 +--
 tools/libvchan/node-select.c                       |    3 +--
 tools/libvchan/node.c                              |    3 +--
 tools/libxc/include/xc_dom.h                       |    3 +--
 tools/libxc/include/xenctrl.h                      |    3 +--
 tools/libxc/include/xenctrlosdep.h                 |    3 +--
 tools/libxc/include/xenguest.h                     |    3 +--
 tools/libxc/include/xentoollog.h                   |    3 +--
 tools/libxc/xc_altp2m.c                            |    3 +--
 tools/libxc/xc_compression.c                       |    3 +--
 tools/libxc/xc_core.c                              |    3 +--
 tools/libxc/xc_core.h                              |    3 +--
 tools/libxc/xc_core_arm.c                          |    3 +--
 tools/libxc/xc_core_arm.h                          |    3 +--
 tools/libxc/xc_core_x86.c                          |    3 +--
 tools/libxc/xc_core_x86.h                          |    3 +--
 tools/libxc/xc_cpu_hotplug.c                       |    3 +--
 tools/libxc/xc_cpufeature.h                        |    3 +--
 tools/libxc/xc_cpuid_x86.c                         |    3 +--
 tools/libxc/xc_cpupool.c                           |    3 +--
 tools/libxc/xc_csched.c                            |    3 +--
 tools/libxc/xc_csched2.c                           |    3 +--
 tools/libxc/xc_dom_arm.c                           |    3 +--
 tools/libxc/xc_dom_armzimageloader.c               |    3 +--
 tools/libxc/xc_dom_binloader.c                     |    3 +--
 tools/libxc/xc_dom_boot.c                          |    3 +--
 tools/libxc/xc_dom_bzimageloader.c                 |    3 +--
 tools/libxc/xc_dom_compat_linux.c                  |    3 +--
 tools/libxc/xc_dom_core.c                          |    3 +--
 tools/libxc/xc_dom_elfloader.c                     |    3 +--
 tools/libxc/xc_dom_x86.c                           |    3 +--
 tools/libxc/xc_domain.c                            |    3 +--
 tools/libxc/xc_efi.h                               |    3 +--
 tools/libxc/xc_elf.h                               |    3 +--
 tools/libxc/xc_evtchn.c                            |    3 +--
 tools/libxc/xc_flask.c                             |    3 +--
 tools/libxc/xc_foreign_memory.c                    |    3 +--
 tools/libxc/xc_freebsd.c                           |    3 +--
 tools/libxc/xc_freebsd_osdep.c                     |    3 +--
 tools/libxc/xc_gnttab.c                            |    3 +--
 tools/libxc/xc_hcall_buf.c                         |    3 +--
 tools/libxc/xc_hvm_build_arm.c                     |    3 +--
 tools/libxc/xc_hvm_build_x86.c                     |    3 +--
 tools/libxc/xc_linux.c                             |    3 +--
 tools/libxc/xc_linux_osdep.c                       |    3 +--
 tools/libxc/xc_mem_access.c                        |    3 +--
 tools/libxc/xc_mem_paging.c                        |    3 +--
 tools/libxc/xc_memshr.c                            |    3 +--
 tools/libxc/xc_minios.c                            |    3 +--
 tools/libxc/xc_misc.c                              |    3 +--
 tools/libxc/xc_monitor.c                           |    3 +--
 tools/libxc/xc_netbsd.c                            |    3 +--
 tools/libxc/xc_nomigrate.c                         |    3 +--
 tools/libxc/xc_offline_page.c                      |    3 +--
 tools/libxc/xc_pagetab.c                           |    3 +--
 tools/libxc/xc_physdev.c                           |    3 +--
 tools/libxc/xc_pm.c                                |    3 +--
 tools/libxc/xc_private.c                           |    3 +--
 tools/libxc/xc_private.h                           |    3 +--
 tools/libxc/xc_resume.c                            |    3 +--
 tools/libxc/xc_rt.c                                |    3 +--
 tools/libxc/xc_solaris.c                           |    3 +--
 tools/libxc/xc_suspend.c                           |    3 +--
 tools/libxc/xc_tbuf.c                              |    3 +--
 tools/libxc/xc_tmem.c                              |    3 +--
 tools/libxc/xc_vm_event.c                          |    3 +--
 tools/libxc/xg_private.c                           |    3 +--
 tools/libxc/xg_private.h                           |    3 +--
 tools/libxc/xg_save_restore.h                      |    3 +--
 tools/libxc/xtl_core.c                             |    3 +--
 tools/libxc/xtl_logger_stdio.c                     |    3 +--
 tools/memshr/bidir-daemon.c                        |    3 +--
 tools/memshr/bidir-daemon.h                        |    3 +--
 tools/memshr/bidir-hash.c                          |    3 +--
 tools/memshr/bidir-hash.h                          |    3 +--
 tools/memshr/bidir-namedefs.h                      |    3 +--
 tools/memshr/interface.c                           |    3 +--
 tools/memshr/memshr-priv.h                         |    3 +--
 tools/memshr/memshr.h                              |    3 +--
 tools/memshr/shm.c                                 |    3 +--
 tools/memshr/shm.h                                 |    3 +--
 tools/misc/gtracestat.c                            |    3 +--
 tools/misc/gtraceview.c                            |    3 +--
 tools/misc/xen-ringwatch                           |    4 +---
 tools/misc/xencov.c                                |    3 +--
 tools/misc/xencov_split                            |    3 +--
 tools/misc/xenpm.c                                 |    3 +--
 tools/misc/xenpvnetboot                            |    4 +---
 tools/ocaml/LICENSE                                |    3 +--
 tools/pygrub/src/ExtLinuxConf.py                   |    3 +--
 tools/pygrub/src/GrubConf.py                       |    3 +--
 tools/pygrub/src/pygrub                            |    3 +--
 tools/python/xen/lowlevel/xl/xl.c                  |    3 +--
 tools/python/xen/lowlevel/xs/xs.c                  |    3 +--
 tools/tests/mce-test/cases/srao_llc/dom0/cases.sh  |    3 +--
 tools/tests/mce-test/cases/srao_llc/guest/cases.sh |    3 +--
 tools/tests/mce-test/cases/srao_llc/xen/cases.sh   |    3 +--
 tools/tests/mce-test/cases/srao_mem/dom0/cases.sh  |    3 +--
 tools/tests/mce-test/cases/srao_mem/guest/cases.sh |    3 +--
 tools/tests/mce-test/cases/srao_mem/xen/cases.sh   |    3 +--
 tools/tests/mce-test/cases/ucna_llc/dom0/cases.sh  |    3 +--
 tools/tests/mce-test/cases/ucna_llc/guest/cases.sh |    3 +--
 tools/tests/mce-test/cases/ucna_llc/xen/cases.sh   |    3 +--
 tools/tests/mce-test/config/setup.conf             |    3 +--
 tools/tests/mce-test/lib/xen-mceinj-tool.sh        |    3 +--
 tools/tests/mce-test/tools/xen-mceinj.c            |    3 +--
 tools/tests/utests/run_all_tests.py                |    3 +--
 tools/tests/x86_emulator/blowfish.c                |    3 +--
 tools/xenbackendd/xenbackendd.c                    |    3 +--
 tools/xenmon/COPYING                               |    3 +--
 tools/xenmon/setmask.c                             |    3 +--
 tools/xenmon/xenbaked.c                            |    3 +--
 tools/xenmon/xenbaked.h                            |    3 +--
 tools/xenmon/xenmon.py                             |    3 +--
 tools/xenpaging/file_ops.c                         |    3 +--
 tools/xenpaging/file_ops.h                         |    3 +--
 tools/xenpaging/policy.h                           |    3 +--
 tools/xenpaging/policy_default.c                   |    3 +--
 tools/xenpaging/xenpaging.c                        |    3 +--
 tools/xenpaging/xenpaging.h                        |    3 +--
 tools/xenpmd/xenpmd.c                              |    3 +--
 tools/xenstat/libxenstat/COPYING                   |    3 +--
 tools/xenstat/xentop/xentop.1                      |    3 +--
 tools/xenstat/xentop/xentop.c                      |    3 +--
 tools/xenstore/COPYING                             |    3 +--
 tools/xenstore/include/xenstore.h                  |    3 +--
 tools/xenstore/include/xenstore_lib.h              |    3 +--
 tools/xenstore/talloc.c                            |    3 +--
 tools/xenstore/talloc.h                            |    3 +--
 tools/xenstore/tdb.c                               |    3 +--
 tools/xenstore/tdb.h                               |    3 +--
 tools/xenstore/xenstored_core.c                    |    3 +--
 tools/xenstore/xenstored_core.h                    |    3 +--
 tools/xenstore/xenstored_domain.c                  |    3 +--
 tools/xenstore/xenstored_domain.h                  |    3 +--
 tools/xenstore/xenstored_minios.c                  |    3 +--
 tools/xenstore/xenstored_posix.c                   |    3 +--
 tools/xenstore/xenstored_transaction.c             |    3 +--
 tools/xenstore/xenstored_transaction.h             |    3 +--
 tools/xenstore/xenstored_watch.c                   |    3 +--
 tools/xenstore/xenstored_watch.h                   |    3 +--
 tools/xenstore/xs.c                                |    3 +--
 tools/xenstore/xs_lib.c                            |    3 +--
 tools/xentrace/xenalyze.c                          |    3 +--
 .../linux-2.6/platform-pci/platform-pci.c          |    3 +--
 .../linux-2.6/platform-pci/platform-pci.h          |    3 +--
 .../linux-2.6/platform-pci/xen_support.c           |    3 +--
 xen/COPYING                                        |    3 +--
 xen/arch/arm/arm32/lib/lib1funcs.S                 |    4 +---
 xen/arch/arm/arm32/lib/lshrdi3.S                   |    4 +---
 xen/arch/x86/acpi/boot.c                           |    3 +--
 xen/arch/x86/acpi/cpu_idle.c                       |    3 +--
 xen/arch/x86/acpi/cpufreq/cpufreq.c                |    3 +--
 xen/arch/x86/acpi/cpufreq/powernow.c               |    3 +--
 xen/arch/x86/acpi/cpuidle_menu.c                   |    3 +--
 xen/arch/x86/acpi/lib.c                            |    3 +--
 xen/arch/x86/alternative.c                         |    3 +--
 xen/arch/x86/cpu/mcheck/amd_nonfatal.c             |    3 +--
 xen/arch/x86/cpu/mcheck/mce-apei.c                 |    3 +--
 xen/arch/x86/cpu/mcheck/mce_amd.c                  |    3 +--
 xen/arch/x86/cpu/mcheck/mce_quirks.h               |    3 +--
 xen/arch/x86/cpu/mcheck/vmce.c                     |    3 +--
 xen/arch/x86/cpu/mcheck/x86_mca.h                  |    3 +--
 xen/arch/x86/cpu/mtrr/main.c                       |    3 +--
 xen/arch/x86/cpu/mwait-idle.c                      |    3 +--
 xen/arch/x86/cpu/vpmu.c                            |    3 +--
 xen/arch/x86/cpu/vpmu_amd.c                        |    3 +--
 xen/arch/x86/cpu/vpmu_intel.c                      |    3 +--
 xen/arch/x86/debug.c                               |    4 +---
 xen/arch/x86/gdbstub.c                             |    3 +--
 xen/arch/x86/genapic/x2apic.c                      |    3 +--
 xen/arch/x86/hvm/asid.c                            |    3 +--
 xen/arch/x86/hvm/event.c                           |    3 +--
 xen/arch/x86/hvm/hpet.c                            |    3 +--
 xen/arch/x86/hvm/hvm.c                             |    3 +--
 xen/arch/x86/hvm/intercept.c                       |    3 +--
 xen/arch/x86/hvm/io.c                              |    3 +--
 xen/arch/x86/hvm/irq.c                             |    3 +--
 xen/arch/x86/hvm/mtrr.c                            |    3 +--
 xen/arch/x86/hvm/nestedhvm.c                       |    3 +--
 xen/arch/x86/hvm/pmtimer.c                         |    3 +--
 xen/arch/x86/hvm/quirks.c                          |    3 +--
 xen/arch/x86/hvm/save.c                            |    3 +--
 xen/arch/x86/hvm/svm/asid.c                        |    3 +--
 xen/arch/x86/hvm/svm/emulate.c                     |    3 +--
 xen/arch/x86/hvm/svm/entry.S                       |    3 +--
 xen/arch/x86/hvm/svm/intr.c                        |    3 +--
 xen/arch/x86/hvm/svm/nestedsvm.c                   |    3 +--
 xen/arch/x86/hvm/svm/svm.c                         |    3 +--
 xen/arch/x86/hvm/svm/svmdebug.c                    |    3 +--
 xen/arch/x86/hvm/svm/vmcb.c                        |    3 +--
 xen/arch/x86/hvm/vioapic.c                         |    3 +--
 xen/arch/x86/hvm/vlapic.c                          |    3 +--
 xen/arch/x86/hvm/vmsi.c                            |    3 +--
 xen/arch/x86/hvm/vmx/entry.S                       |    3 +--
 xen/arch/x86/hvm/vmx/intr.c                        |    3 +--
 xen/arch/x86/hvm/vmx/vmcs.c                        |    3 +--
 xen/arch/x86/hvm/vmx/vmx.c                         |    3 +--
 xen/arch/x86/hvm/vmx/vvmx.c                        |    3 +--
 xen/arch/x86/hvm/vpt.c                             |    3 +--
 xen/arch/x86/mm.c                                  |    3 +--
 xen/arch/x86/mm/altp2m.c                           |    3 +--
 xen/arch/x86/mm/guest_walk.c                       |    3 +--
 xen/arch/x86/mm/hap/guest_walk.c                   |    3 +--
 xen/arch/x86/mm/hap/hap.c                          |    3 +--
 xen/arch/x86/mm/hap/nested_ept.c                   |    3 +--
 xen/arch/x86/mm/hap/nested_hap.c                   |    3 +--
 xen/arch/x86/mm/hap/private.h                      |    3 +--
 xen/arch/x86/mm/mem_paging.c                       |    3 +--
 xen/arch/x86/mm/mem_sharing.c                      |    3 +--
 xen/arch/x86/mm/mm-locks.h                         |    3 +--
 xen/arch/x86/mm/p2m-ept.c                          |    3 +--
 xen/arch/x86/mm/p2m-pod.c                          |    3 +--
 xen/arch/x86/mm/p2m-pt.c                           |    3 +--
 xen/arch/x86/mm/p2m.c                              |    3 +--
 xen/arch/x86/mm/paging.c                           |    3 +--
 xen/arch/x86/mm/shadow/common.c                    |    3 +--
 xen/arch/x86/mm/shadow/multi.c                     |    3 +--
 xen/arch/x86/mm/shadow/multi.h                     |    3 +--
 xen/arch/x86/mm/shadow/private.h                   |    3 +--
 xen/arch/x86/mm/shadow/types.h                     |    3 +--
 xen/arch/x86/monitor.c                             |    4 +---
 xen/arch/x86/smpboot.c                             |    3 +--
 xen/arch/x86/traps.c                               |    3 +--
 xen/arch/x86/vm_event.c                            |    4 +---
 xen/arch/x86/x86_64/acpi_mmcfg.c                   |    3 +--
 xen/arch/x86/x86_64/cpu_idle.c                     |    3 +--
 xen/arch/x86/x86_64/cpufreq.c                      |    3 +--
 xen/arch/x86/x86_64/gdbstub.c                      |    3 +--
 xen/arch/x86/x86_64/mm.c                           |    3 +--
 xen/arch/x86/x86_64/mmconfig.h                     |    3 +--
 xen/arch/x86/x86_emulate/x86_emulate.c             |    3 +--
 xen/arch/x86/x86_emulate/x86_emulate.h             |    3 +--
 xen/common/event_channel.c                         |    3 +--
 xen/common/gdbstub.c                               |    3 +--
 xen/common/grant_table.c                           |    3 +--
 xen/common/hvm/save.c                              |    3 +--
 xen/common/libelf/libelf-dominfo.c                 |    3 +--
 xen/common/libelf/libelf-loader.c                  |    3 +--
 xen/common/libelf/libelf-private.h                 |    3 +--
 xen/common/libelf/libelf-tools.c                   |    3 +--
 xen/common/libfdt/fdt.c                            |    4 +---
 xen/common/libfdt/fdt_empty_tree.c                 |    4 +---
 xen/common/libfdt/fdt_ro.c                         |    4 +---
 xen/common/libfdt/fdt_rw.c                         |    4 +---
 xen/common/libfdt/fdt_strerror.c                   |    4 +---
 xen/common/libfdt/fdt_sw.c                         |    4 +---
 xen/common/libfdt/fdt_wip.c                        |    4 +---
 xen/common/libfdt/libfdt_internal.h                |    4 +---
 xen/common/mem_access.c                            |    3 +--
 xen/common/page_alloc.c                            |    3 +--
 xen/common/pdx.c                                   |    3 +--
 xen/common/preempt.c                               |    3 +--
 xen/common/radix-tree.c                            |    3 +--
 xen/common/rbtree.c                                |    3 +--
 xen/common/rcupdate.c                              |    3 +--
 xen/common/stop_machine.c                          |    3 +--
 xen/common/time.c                                  |    3 +--
 xen/common/unlzma.c                                |    3 +--
 xen/common/unlzo.c                                 |    3 +--
 xen/common/vm_event.c                              |    3 +--
 xen/common/wait.c                                  |    3 +--
 xen/drivers/acpi/apei/apei-base.c                  |    3 +--
 xen/drivers/acpi/apei/apei-io.c                    |    3 +--
 xen/drivers/acpi/apei/erst.c                       |    3 +--
 xen/drivers/acpi/apei/hest.c                       |    3 +--
 xen/drivers/acpi/numa.c                            |    3 +--
 xen/drivers/acpi/osl.c                             |    3 +--
 xen/drivers/acpi/pmstat.c                          |    3 +--
 xen/drivers/acpi/tables.c                          |    3 +--
 xen/drivers/cpufreq/cpufreq.c                      |    3 +--
 xen/drivers/passthrough/amd/iommu_acpi.c           |    3 +--
 xen/drivers/passthrough/amd/iommu_cmd.c            |    3 +--
 xen/drivers/passthrough/amd/iommu_detect.c         |    3 +--
 xen/drivers/passthrough/amd/iommu_guest.c          |    3 +--
 xen/drivers/passthrough/amd/iommu_init.c           |    3 +--
 xen/drivers/passthrough/amd/iommu_intr.c           |    3 +--
 xen/drivers/passthrough/amd/iommu_map.c            |    3 +--
 xen/drivers/passthrough/amd/pci_amd_iommu.c        |    3 +--
 xen/drivers/passthrough/arm/smmu.c                 |    3 +--
 xen/drivers/passthrough/ats.h                      |    3 +--
 xen/drivers/passthrough/io.c                       |    3 +--
 xen/drivers/passthrough/iommu.c                    |    3 +--
 xen/drivers/passthrough/pci.c                      |    3 +--
 xen/drivers/passthrough/vtd/dmar.c                 |    3 +--
 xen/drivers/passthrough/vtd/dmar.h                 |    3 +--
 xen/drivers/passthrough/vtd/extern.h               |    3 +--
 xen/drivers/passthrough/vtd/intremap.c             |    3 +--
 xen/drivers/passthrough/vtd/iommu.c                |    3 +--
 xen/drivers/passthrough/vtd/iommu.h                |    3 +--
 xen/drivers/passthrough/vtd/qinval.c               |    3 +--
 xen/drivers/passthrough/vtd/quirks.c               |    3 +--
 xen/drivers/passthrough/vtd/utils.c                |    3 +--
 xen/drivers/passthrough/vtd/vtd.h                  |    3 +--
 xen/drivers/passthrough/vtd/x86/ats.c              |    3 +--
 xen/drivers/passthrough/vtd/x86/vtd.c              |    3 +--
 xen/drivers/passthrough/x86/ats.c                  |    3 +--
 xen/drivers/passthrough/x86/iommu.c                |    3 +--
 xen/include/asm-arm/iommu.h                        |    3 +--
 xen/include/asm-arm/monitor.h                      |    4 +---
 xen/include/asm-arm/vm_event.h                     |    3 +--
 xen/include/asm-x86/acpi.h                         |    3 +--
 xen/include/asm-x86/altp2m.h                       |    3 +--
 xen/include/asm-x86/amd-iommu.h                    |    3 +--
 xen/include/asm-x86/guest_pt.h                     |    3 +--
 xen/include/asm-x86/hap.h                          |    3 +--
 xen/include/asm-x86/hvm/asid.h                     |    3 +--
 xen/include/asm-x86/hvm/domain.h                   |    3 +--
 xen/include/asm-x86/hvm/event.h                    |    3 +--
 xen/include/asm-x86/hvm/hvm.h                      |    3 +--
 xen/include/asm-x86/hvm/io.h                       |    3 +--
 xen/include/asm-x86/hvm/irq.h                      |    3 +--
 xen/include/asm-x86/hvm/nestedhvm.h                |    3 +--
 xen/include/asm-x86/hvm/support.h                  |    3 +--
 xen/include/asm-x86/hvm/svm/amd-iommu-defs.h       |    3 +--
 xen/include/asm-x86/hvm/svm/amd-iommu-proto.h      |    3 +--
 xen/include/asm-x86/hvm/svm/asid.h                 |    3 +--
 xen/include/asm-x86/hvm/svm/emulate.h              |    3 +--
 xen/include/asm-x86/hvm/svm/intr.h                 |    3 +--
 xen/include/asm-x86/hvm/svm/nestedsvm.h            |    3 +--
 xen/include/asm-x86/hvm/svm/svm.h                  |    3 +--
 xen/include/asm-x86/hvm/svm/svmdebug.h             |    3 +--
 xen/include/asm-x86/hvm/svm/vmcb.h                 |    3 +--
 xen/include/asm-x86/hvm/vcpu.h                     |    3 +--
 xen/include/asm-x86/hvm/vioapic.h                  |    3 +--
 xen/include/asm-x86/hvm/vlapic.h                   |    3 +--
 xen/include/asm-x86/hvm/vmx/vmcs.h                 |    3 +--
 xen/include/asm-x86/hvm/vmx/vmx.h                  |    3 +--
 xen/include/asm-x86/hvm/vmx/vvmx.h                 |    3 +--
 xen/include/asm-x86/hvm/vpt.h                      |    3 +--
 xen/include/asm-x86/iommu.h                        |    3 +--
 xen/include/asm-x86/mem_paging.h                   |    3 +--
 xen/include/asm-x86/mem_sharing.h                  |    3 +--
 xen/include/asm-x86/monitor.h                      |    4 +---
 xen/include/asm-x86/p2m.h                          |    3 +--
 xen/include/asm-x86/paging.h                       |    3 +--
 xen/include/asm-x86/shadow.h                       |    3 +--
 xen/include/asm-x86/traps.h                        |    3 +--
 xen/include/asm-x86/vm_event.h                     |    3 +--
 xen/include/asm-x86/vpmu.h                         |    3 +--
 xen/include/asm-x86/xenoprof.h                     |    3 +--
 xen/include/public/io/libxenvchan.h                |    3 +--
 xen/include/xen/acpi.h                             |    3 +--
 xen/include/xen/cper.h                             |    3 +--
 xen/include/xen/cpuidle.h                          |    3 +--
 xen/include/xen/gdbstub.h                          |    3 +--
 xen/include/xen/grant_table.h                      |    3 +--
 xen/include/xen/hvm/iommu.h                        |    3 +--
 xen/include/xen/hvm/irq.h                          |    3 +--
 xen/include/xen/hvm/save.h                         |    3 +--
 xen/include/xen/inttypes.h                         |    4 +---
 xen/include/xen/iommu.h                            |    3 +--
 xen/include/xen/libfdt/fdt.h                       |    4 +---
 xen/include/xen/libfdt/libfdt.h                    |    4 +---
 xen/include/xen/mem_access.h                       |    3 +--
 xen/include/xen/multiboot.h                        |    3 +--
 xen/include/xen/radix-tree.h                       |    3 +--
 xen/include/xen/rbtree.h                           |    3 +--
 xen/include/xen/rcupdate.h                         |    3 +--
 xen/include/xen/vm_event.h                         |    3 +--
 472 files changed, 474 insertions(+), 978 deletions(-)

diff --git a/COPYING b/COPYING
index 07535ad..acd3016 100644
--- a/COPYING
+++ b/COPYING
@@ -343,8 +343,7 @@ the "copyright" line and a pointer to where the full notice 
is found.
     GNU General Public License for more details.
 
     You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+    along with this program; If not, see <http://www.gnu.org/licenses/>.
 
 
 Also add information on how to contact you by electronic and paper mail.
diff --git a/m4/pkg.m4 b/m4/pkg.m4
index 62995f0..ed7182d 100644
--- a/m4/pkg.m4
+++ b/m4/pkg.m4
@@ -14,8 +14,7 @@
 # General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# along with this program; If not, see <http://www.gnu.org/licenses/>.
 #
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
diff --git a/m4/systemd.m4 b/m4/systemd.m4
index b04964b..8284993 100644
--- a/m4/systemd.m4
+++ b/m4/systemd.m4
@@ -13,8 +13,7 @@
 # General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+# along with this program; If not, see <http://www.gnu.org/licenses/>.
 
 dnl Some optional path options
 AC_DEFUN([AX_SYSTEMD_OPTIONS], [
diff --git a/stubdom/vtpmmgr/tpmrsa.c b/stubdom/vtpmmgr/tpmrsa.c
index 2a2fa36..b18a5a3 100644
--- a/stubdom/vtpmmgr/tpmrsa.c
+++ b/stubdom/vtpmmgr/tpmrsa.c
@@ -19,8 +19,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License along
- *  with this program; if not, write to the Free Software Foundation, Inc.,
- *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *  with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  *  RSA was designed by Ron Rivest, Adi Shamir and Len Adleman.
diff --git a/stubdom/vtpmmgr/tpmrsa.h b/stubdom/vtpmmgr/tpmrsa.h
index 31e5a8b..08213bb 100644
--- a/stubdom/vtpmmgr/tpmrsa.h
+++ b/stubdom/vtpmmgr/tpmrsa.h
@@ -21,8 +21,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License along
- *  with this program; if not, write to the Free Software Foundation, Inc.,
- *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ *  with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 #ifndef TPMRSA_H
 #define TPMRSA_H
diff --git a/tools/blktap2/drivers/libaio-compat.h 
b/tools/blktap2/drivers/libaio-compat.h
index 47cd96d..ca9ff45 100644
--- a/tools/blktap2/drivers/libaio-compat.h
+++ b/tools/blktap2/drivers/libaio-compat.h
@@ -13,9 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should  have received a copy  of the GNU  Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
- * USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/tools/configure b/tools/configure
index d90db47..9cb01ae 100755
--- a/tools/configure
+++ b/tools/configure
@@ -3595,8 +3595,7 @@ esac
 # General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# along with this program; If not, see <http://www.gnu.org/licenses/>.
 #
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -3805,8 +3804,7 @@ esac
 # General Public License for more details.
 #
 # You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
+# along with this program; If not, see <http://www.gnu.org/licenses/>.
 
 
 
diff --git a/tools/console/client/main.c b/tools/console/client/main.c
index ff9ac7d..f130a60 100644
--- a/tools/console/client/main.c
+++ b/tools/console/client/main.c
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  * 
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
 \*/
 
 #include <sys/file.h>
diff --git a/tools/console/daemon/io.c b/tools/console/daemon/io.c
index e246c25..cafc7b7 100644
--- a/tools/console/daemon/io.c
+++ b/tools/console/daemon/io.c
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  * 
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #define _GNU_SOURCE
diff --git a/tools/console/daemon/io.h b/tools/console/daemon/io.h
index f658bfc..d016add 100644
--- a/tools/console/daemon/io.h
+++ b/tools/console/daemon/io.h
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  * 
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
 \*/
 
 #ifndef CONSOLED_IO_H
diff --git a/tools/console/daemon/main.c b/tools/console/daemon/main.c
index 11de5c9..23860d3 100644
--- a/tools/console/daemon/main.c
+++ b/tools/console/daemon/main.c
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  * 
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
 \*/
 
 #include <getopt.h>
diff --git a/tools/console/daemon/utils.c b/tools/console/daemon/utils.c
index 71dd185..dbb3b12 100644
--- a/tools/console/daemon/utils.c
+++ b/tools/console/daemon/utils.c
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  * 
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
 \*/
 
 #include <sys/types.h>
diff --git a/tools/console/daemon/utils.h b/tools/console/daemon/utils.h
index 8725dcd..1295822 100644
--- a/tools/console/daemon/utils.h
+++ b/tools/console/daemon/utils.h
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  * 
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
 \*/
 
 #ifndef CONSOLED_UTILS_H
diff --git a/tools/debugger/gdbsx/gx/gx.h b/tools/debugger/gdbsx/gx/gx.h
index 47594c3..af39575 100644
--- a/tools/debugger/gdbsx/gx/gx.h
+++ b/tools/debugger/gdbsx/gx/gx.h
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 typedef uint16_t domid_t;
diff --git a/tools/debugger/gdbsx/gx/gx_comm.c 
b/tools/debugger/gdbsx/gx/gx_comm.c
index 7680dbd..5a0c61d 100644
--- a/tools/debugger/gdbsx/gx/gx_comm.c
+++ b/tools/debugger/gdbsx/gx/gx_comm.c
@@ -15,9 +15,7 @@
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 51 Franklin Street, Fifth Floor,
-   Boston, MA 02110-1301, USA.  */
+   along with this program; If not, see <http://www.gnu.org/licenses/>.  */
 /*
  * Copyright (C) 2009, Mukesh Rathor, Oracle Corp.  All rights reserved.
  *
@@ -31,9 +29,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /* This module handles communication with remote gdb.  courtesy 
diff --git a/tools/debugger/gdbsx/gx/gx_local.c 
b/tools/debugger/gdbsx/gx/gx_local.c
index c8f0e72..1bec03d 100644
--- a/tools/debugger/gdbsx/gx/gx_local.c
+++ b/tools/debugger/gdbsx/gx/gx_local.c
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 
diff --git a/tools/debugger/gdbsx/gx/gx_main.c 
b/tools/debugger/gdbsx/gx/gx_main.c
index e3feee1..a908c45 100644
--- a/tools/debugger/gdbsx/gx/gx_main.c
+++ b/tools/debugger/gdbsx/gx/gx_main.c
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /* This module is the main module for gdbsx implementation. gdbsx is a remote
diff --git a/tools/debugger/gdbsx/gx/gx_utils.c 
b/tools/debugger/gdbsx/gx/gx_utils.c
index e87ffcb..f3c0039 100644
--- a/tools/debugger/gdbsx/gx/gx_utils.c
+++ b/tools/debugger/gdbsx/gx/gx_utils.c
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stdio.h>
diff --git a/tools/debugger/gdbsx/gx/xg_dummy.c 
b/tools/debugger/gdbsx/gx/xg_dummy.c
index b82899f..e995fad 100644
--- a/tools/debugger/gdbsx/gx/xg_dummy.c
+++ b/tools/debugger/gdbsx/gx/xg_dummy.c
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 #include <stdio.h>
 #include <stddef.h>
diff --git a/tools/debugger/gdbsx/xg/xg_main.c 
b/tools/debugger/gdbsx/xg/xg_main.c
index c95e4ed..8c8a402 100644
--- a/tools/debugger/gdbsx/xg/xg_main.c
+++ b/tools/debugger/gdbsx/xg/xg_main.c
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /* This is the main module to interface with xen. This module exports APIs that
diff --git a/tools/debugger/gdbsx/xg/xg_public.h 
b/tools/debugger/gdbsx/xg/xg_public.h
index 6236d08..3f905a2 100644
--- a/tools/debugger/gdbsx/xg/xg_public.h
+++ b/tools/debugger/gdbsx/xg/xg_public.h
@@ -11,9 +11,7 @@
  * General Public License for more details.
  *
  * You should have received a copy of the GNU General Public
- * License along with this program; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 021110-1307, USA.
+ * License along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #define XGERR(...)   \
diff --git a/tools/firmware/hvmloader/32bitbios_support.c 
b/tools/firmware/hvmloader/32bitbios_support.c
index fe770a3..1141350 100644
--- a/tools/firmware/hvmloader/32bitbios_support.c
+++ b/tools/firmware/hvmloader/32bitbios_support.c
@@ -17,8 +17,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <inttypes.h>
diff --git a/tools/firmware/hvmloader/Makefile 
b/tools/firmware/hvmloader/Makefile
index 76773b8..0560a7b 100644
--- a/tools/firmware/hvmloader/Makefile
+++ b/tools/firmware/hvmloader/Makefile
@@ -14,8 +14,7 @@
 # more details.
 #
 # You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-# Place - Suite 330, Boston, MA 02111-1307 USA.
+# this program; If not, see <http://www.gnu.org/licenses/>.
 #
 
 XEN_ROOT = $(CURDIR)/../../..
diff --git a/tools/firmware/hvmloader/acpi/Makefile 
b/tools/firmware/hvmloader/acpi/Makefile
index 33b714a..d3e882a 100644
--- a/tools/firmware/hvmloader/acpi/Makefile
+++ b/tools/firmware/hvmloader/acpi/Makefile
@@ -11,8 +11,7 @@
 # more details.
 #
 # You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-# Place - Suite 330, Boston, MA 02111-1307 USA.
+# this program; If not, see <http://www.gnu.org/licenses/>.
 #
 
 XEN_ROOT = $(CURDIR)/../../../..
diff --git a/tools/firmware/hvmloader/acpi/acpi2_0.h 
b/tools/firmware/hvmloader/acpi/acpi2_0.h
index d698095..78eb43d 100644
--- a/tools/firmware/hvmloader/acpi/acpi2_0.h
+++ b/tools/firmware/hvmloader/acpi/acpi2_0.h
@@ -11,8 +11,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  *
  */
 #ifndef _ACPI_2_0_H_
diff --git a/tools/firmware/hvmloader/acpi/build.c 
b/tools/firmware/hvmloader/acpi/build.c
index 3276df2..503648c 100644
--- a/tools/firmware/hvmloader/acpi/build.c
+++ b/tools/firmware/hvmloader/acpi/build.c
@@ -12,8 +12,7 @@
  * details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "acpi2_0.h"
diff --git a/tools/firmware/hvmloader/acpi/dsdt.asl 
b/tools/firmware/hvmloader/acpi/dsdt.asl
index fc1f309..e266dc2 100644
--- a/tools/firmware/hvmloader/acpi/dsdt.asl
+++ b/tools/firmware/hvmloader/acpi/dsdt.asl
@@ -13,8 +13,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 DefinitionBlock ("DSDT.aml", "DSDT", 2, "Xen", "HVM", 0)
diff --git a/tools/firmware/hvmloader/acpi/ssdt_pm.asl 
b/tools/firmware/hvmloader/acpi/ssdt_pm.asl
index 48e6d05..1a7d752 100644
--- a/tools/firmware/hvmloader/acpi/ssdt_pm.asl
+++ b/tools/firmware/hvmloader/acpi/ssdt_pm.asl
@@ -15,8 +15,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/tools/firmware/hvmloader/acpi/ssdt_s3.asl 
b/tools/firmware/hvmloader/acpi/ssdt_s3.asl
index dad1db5..f89ac02 100644
--- a/tools/firmware/hvmloader/acpi/ssdt_s3.asl
+++ b/tools/firmware/hvmloader/acpi/ssdt_s3.asl
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 DefinitionBlock ("SSDT_S3.aml", "SSDT", 2, "Xen", "HVM", 0)
diff --git a/tools/firmware/hvmloader/acpi/ssdt_s4.asl 
b/tools/firmware/hvmloader/acpi/ssdt_s4.asl
index 0a84381..d589e4b 100644
--- a/tools/firmware/hvmloader/acpi/ssdt_s4.asl
+++ b/tools/firmware/hvmloader/acpi/ssdt_s4.asl
@@ -14,8 +14,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 DefinitionBlock ("SSDT_S4.aml", "SSDT", 2, "Xen", "HVM", 0)
diff --git a/tools/firmware/hvmloader/acpi/ssdt_tpm.asl 
b/tools/firmware/hvmloader/acpi/ssdt_tpm.asl
index 1157eb4..2ae8ad4 100644
--- a/tools/firmware/hvmloader/acpi/ssdt_tpm.asl
+++ b/tools/firmware/hvmloader/acpi/ssdt_tpm.asl
@@ -13,8 +13,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /* SSDT for TPM TIS Interface for Xen with Qemu device model. */
diff --git a/tools/firmware/hvmloader/acpi/static_tables.c 
b/tools/firmware/hvmloader/acpi/static_tables.c
index 323ae31..f4d627b 100644
--- a/tools/firmware/hvmloader/acpi/static_tables.c
+++ b/tools/firmware/hvmloader/acpi/static_tables.c
@@ -12,8 +12,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "acpi2_0.h"
diff --git a/tools/firmware/hvmloader/cacheattr.c 
b/tools/firmware/hvmloader/cacheattr.c
index de8d39c..1ac6656 100644
--- a/tools/firmware/hvmloader/cacheattr.c
+++ b/tools/firmware/hvmloader/cacheattr.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "util.h"
diff --git a/tools/firmware/hvmloader/e820.c b/tools/firmware/hvmloader/e820.c
index f4ccacb..bbde2be 100644
--- a/tools/firmware/hvmloader/e820.c
+++ b/tools/firmware/hvmloader/e820.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "config.h"
diff --git a/tools/firmware/hvmloader/hvmloader.c 
b/tools/firmware/hvmloader/hvmloader.c
index 84c588c..716d03c 100644
--- a/tools/firmware/hvmloader/hvmloader.c
+++ b/tools/firmware/hvmloader/hvmloader.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "util.h"
diff --git a/tools/firmware/hvmloader/mkhex b/tools/firmware/hvmloader/mkhex
index cb21257..d0982d5 100755
--- a/tools/firmware/hvmloader/mkhex
+++ b/tools/firmware/hvmloader/mkhex
@@ -16,8 +16,7 @@
 # more details.
 #
 # You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-# Place - Suite 330, Boston, MA 02111-1307 USA.
+# this program; If not, see <http://www.gnu.org/licenses/>.
 #
 
 echo "unsigned $1[] = {"
diff --git a/tools/firmware/hvmloader/mp_tables.c 
b/tools/firmware/hvmloader/mp_tables.c
index fd636a0..69c2885 100644
--- a/tools/firmware/hvmloader/mp_tables.c
+++ b/tools/firmware/hvmloader/mp_tables.c
@@ -24,8 +24,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stdint.h>
diff --git a/tools/firmware/hvmloader/optionroms.c 
b/tools/firmware/hvmloader/optionroms.c
index e35aebc..9708058 100644
--- a/tools/firmware/hvmloader/optionroms.c
+++ b/tools/firmware/hvmloader/optionroms.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "config.h"
diff --git a/tools/firmware/hvmloader/ovmf.c b/tools/firmware/hvmloader/ovmf.c
index 28dd7bc..bb3da93 100644
--- a/tools/firmware/hvmloader/ovmf.c
+++ b/tools/firmware/hvmloader/ovmf.c
@@ -18,8 +18,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "config.h"
diff --git a/tools/firmware/hvmloader/pci.c b/tools/firmware/hvmloader/pci.c
index 69b98d6..4eb1a31 100644
--- a/tools/firmware/hvmloader/pci.c
+++ b/tools/firmware/hvmloader/pci.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "util.h"
diff --git a/tools/firmware/hvmloader/pir_types.h 
b/tools/firmware/hvmloader/pir_types.h
index 6e50822..9f9259c 100644
--- a/tools/firmware/hvmloader/pir_types.h
+++ b/tools/firmware/hvmloader/pir_types.h
@@ -12,8 +12,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (C) Citrix Systems, 2011
  *
diff --git a/tools/firmware/hvmloader/rombios.c 
b/tools/firmware/hvmloader/rombios.c
index 810bd24..1f15b94 100644
--- a/tools/firmware/hvmloader/rombios.c
+++ b/tools/firmware/hvmloader/rombios.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "config.h"
diff --git a/tools/firmware/hvmloader/seabios.c 
b/tools/firmware/hvmloader/seabios.c
index dd7dfbe..c6b3d9f 100644
--- a/tools/firmware/hvmloader/seabios.c
+++ b/tools/firmware/hvmloader/seabios.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "config.h"
diff --git a/tools/firmware/hvmloader/smbios.c 
b/tools/firmware/hvmloader/smbios.c
index 4d3d692..210c7b0 100644
--- a/tools/firmware/hvmloader/smbios.c
+++ b/tools/firmware/hvmloader/smbios.c
@@ -12,8 +12,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  *
diff --git a/tools/firmware/hvmloader/smbios_types.h 
b/tools/firmware/hvmloader/smbios_types.h
index ff36564..e924f81 100644
--- a/tools/firmware/hvmloader/smbios_types.h
+++ b/tools/firmware/hvmloader/smbios_types.h
@@ -12,8 +12,7 @@
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * along with this program; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  *
diff --git a/tools/firmware/hvmloader/smp.c b/tools/firmware/hvmloader/smp.c
index fa96878..082b17f 100644
--- a/tools/firmware/hvmloader/smp.c
+++ b/tools/firmware/hvmloader/smp.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "util.h"
diff --git a/tools/firmware/hvmloader/tests.c b/tools/firmware/hvmloader/tests.c
index 52772aa..fea3ad3 100644
--- a/tools/firmware/hvmloader/tests.c
+++ b/tools/firmware/hvmloader/tests.c
@@ -16,8 +16,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "util.h"
diff --git a/tools/firmware/hvmloader/util.c b/tools/firmware/hvmloader/util.c
index 32ddcd0..d779fd7 100644
--- a/tools/firmware/hvmloader/util.c
+++ b/tools/firmware/hvmloader/util.c
@@ -14,8 +14,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "util.h"
diff --git a/tools/firmware/rombios/32bit/32bitbios.c 
b/tools/firmware/rombios/32bit/32bitbios.c
index 22f83f4..87acf20 100644
--- a/tools/firmware/rombios/32bit/32bitbios.c
+++ b/tools/firmware/rombios/32bit/32bitbios.c
@@ -12,8 +12,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  *
diff --git a/tools/firmware/rombios/32bit/mkhex 
b/tools/firmware/rombios/32bit/mkhex
index 4517e36..7200d00 100644
--- a/tools/firmware/rombios/32bit/mkhex
+++ b/tools/firmware/rombios/32bit/mkhex
@@ -16,8 +16,7 @@
 # more details.
 #
 # You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 59 Temple
-# Place - Suite 330, Boston, MA 02111-1307 USA.
+# this program; If not, see <http://www.gnu.org/licenses/>.
 #
 
 echo "unsigned $1[] = {"
diff --git a/tools/firmware/rombios/32bit/pmm.c 
b/tools/firmware/rombios/32bit/pmm.c
index 4a279ca..09fec42 100644
--- a/tools/firmware/rombios/32bit/pmm.c
+++ b/tools/firmware/rombios/32bit/pmm.c
@@ -14,8 +14,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  *  Copyright (C) 2009 FUJITSU LIMITED
  *
diff --git a/tools/firmware/rombios/32bit/tcgbios/tcgbios.c 
b/tools/firmware/rombios/32bit/tcgbios/tcgbios.c
index 01d4f2f..beef5a4 100644
--- a/tools/firmware/rombios/32bit/tcgbios/tcgbios.c
+++ b/tools/firmware/rombios/32bit/tcgbios/tcgbios.c
@@ -14,8 +14,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  *
diff --git a/tools/firmware/rombios/32bit/tcgbios/tpm_drivers.c 
b/tools/firmware/rombios/32bit/tcgbios/tpm_drivers.c
index d45f9b0..59d16bb 100644
--- a/tools/firmware/rombios/32bit/tcgbios/tpm_drivers.c
+++ b/tools/firmware/rombios/32bit/tcgbios/tpm_drivers.c
@@ -14,8 +14,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  *
diff --git a/tools/firmware/rombios/32bit/util.c 
b/tools/firmware/rombios/32bit/util.c
index a47bb71..e473e89 100644
--- a/tools/firmware/rombios/32bit/util.c
+++ b/tools/firmware/rombios/32bit/util.c
@@ -14,8 +14,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place - Suite 330, Boston, MA 02111-1307 USA.
+ * this program; If not, see <http://www.gnu.org/licenses/>.
  */
 #include <stdarg.h>
 #include <stdint.h>
diff --git a/tools/firmware/rombios/32bitgateway.c 
b/tools/firmware/rombios/32bitgateway.c
index fc82e07..3d58a6b 100644
--- a/tools/firmware/rombios/32bitgateway.c
+++ b/tools/firmware/rombios/32bitgateway.c
@@ -15,8 +15,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  * Copyright (c) 2008, Citrix Systems, Inc.
diff --git a/tools/firmware/rombios/apmbios.S b/tools/firmware/rombios/apmbios.S
index a010949..814be8f 100644
--- a/tools/firmware/rombios/apmbios.S
+++ b/tools/firmware/rombios/apmbios.S
@@ -15,8 +15,7 @@
 //  Lesser General Public License for more details.
 //
 //  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 
 #if defined(APM_REAL)
 #define APMSYM(s) apmreal_ ## s
diff --git a/tools/firmware/rombios/rombios.c b/tools/firmware/rombios/rombios.c
index 057aced..58ace9b 100644
--- a/tools/firmware/rombios/rombios.c
+++ b/tools/firmware/rombios/rombios.c
@@ -21,8 +21,7 @@
 //  Lesser General Public License for more details.
 //
 //  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+//  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 
 // ROM BIOS for use with Bochs/Plex86/QEMU emulation environment
 
diff --git a/tools/firmware/rombios/rombios.h b/tools/firmware/rombios/rombios.h
index 0308a18..8726d37 100644
--- a/tools/firmware/rombios/rombios.h
+++ b/tools/firmware/rombios/rombios.h
@@ -15,8 +15,7 @@
 //  Lesser General Public License for more details.
 //
 //  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+//  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 
 /* define it to include QEMU specific code */
 //#define BX_QEMU
diff --git a/tools/firmware/rombios/tcgbios.c b/tools/firmware/rombios/tcgbios.c
index c7ec261..e725ef9 100644
--- a/tools/firmware/rombios/tcgbios.c
+++ b/tools/firmware/rombios/tcgbios.c
@@ -13,8 +13,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * Copyright (C) IBM Corporation, 2006
  *
diff --git a/tools/firmware/vgabios/COPYING b/tools/firmware/vgabios/COPYING
index 223ede7..0595626 100644
--- a/tools/firmware/vgabios/COPYING
+++ b/tools/firmware/vgabios/COPYING
@@ -484,8 +484,7 @@ convey the exclusion of warranty; and each file should have 
at least the
     Lesser General Public License for more details.
 
     You should have received a copy of the GNU Lesser General Public
-    License along with this library; if not, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+    License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 
 Also add information on how to contact you by electronic and paper mail.
 
diff --git a/tools/firmware/vgabios/biossums.c 
b/tools/firmware/vgabios/biossums.c
index 6288498..85ecc04 100644
--- a/tools/firmware/vgabios/biossums.c
+++ b/tools/firmware/vgabios/biossums.c
@@ -12,8 +12,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  */
 #include <stdlib.h>
 #include <stdio.h>
diff --git a/tools/firmware/vgabios/clext.c b/tools/firmware/vgabios/clext.c
index c501227..d727cd5 100644
--- a/tools/firmware/vgabios/clext.c
+++ b/tools/firmware/vgabios/clext.c
@@ -14,8 +14,7 @@
 //  Lesser General Public License for more details.
 //
 //  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 // 
 
 //#define CIRRUS_VESA3_PMINFO
diff --git a/tools/firmware/vgabios/vbe.c b/tools/firmware/vgabios/vbe.c
index a13e223..c506690 100644
--- a/tools/firmware/vgabios/vbe.c
+++ b/tools/firmware/vgabios/vbe.c
@@ -13,8 +13,7 @@
 //  Lesser General Public License for more details.
 //
 //  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 // 
 // 
============================================================================================
 //  
diff --git a/tools/firmware/vgabios/vgabios.c b/tools/firmware/vgabios/vgabios.c
index a9dbe00..1c75b7d 100644
--- a/tools/firmware/vgabios/vgabios.c
+++ b/tools/firmware/vgabios/vgabios.c
@@ -17,8 +17,7 @@
 //  Lesser General Public License for more details.
 //
 //  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
 // 
 // 
============================================================================================
 //  
diff --git a/tools/hotplug/Linux/block-common.sh 
b/tools/hotplug/Linux/block-common.sh
index cc374ef..ee95009 100644
--- a/tools/hotplug/Linux/block-common.sh
+++ b/tools/hotplug/Linux/block-common.sh
@@ -11,8 +11,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 
diff --git a/tools/hotplug/Linux/block-drbd-probe 
b/tools/hotplug/Linux/block-drbd-probe
index 247a9d0..635d9f9 100755
--- a/tools/hotplug/Linux/block-drbd-probe
+++ b/tools/hotplug/Linux/block-drbd-probe
@@ -12,8 +12,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 # Usage:
 #     block-drbd-probe devicename
diff --git a/tools/hotplug/Linux/external-device-migrate 
b/tools/hotplug/Linux/external-device-migrate
index a411348..f5942a6 100644
--- a/tools/hotplug/Linux/external-device-migrate
+++ b/tools/hotplug/Linux/external-device-migrate
@@ -12,8 +12,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 set -x
diff --git a/tools/hotplug/Linux/locking.sh b/tools/hotplug/Linux/locking.sh
index 122bcfb..c6a7e96 100644
--- a/tools/hotplug/Linux/locking.sh
+++ b/tools/hotplug/Linux/locking.sh
@@ -12,8 +12,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 #
diff --git a/tools/hotplug/Linux/logging.sh b/tools/hotplug/Linux/logging.sh
index c1bc699..3e94df1 100644
--- a/tools/hotplug/Linux/logging.sh
+++ b/tools/hotplug/Linux/logging.sh
@@ -11,8 +11,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 log() {
diff --git a/tools/hotplug/Linux/vif-common.sh 
b/tools/hotplug/Linux/vif-common.sh
index fa0a18e..6e8d584 100644
--- a/tools/hotplug/Linux/vif-common.sh
+++ b/tools/hotplug/Linux/vif-common.sh
@@ -11,8 +11,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 
diff --git a/tools/hotplug/Linux/xen-hotplug-common.sh.in 
b/tools/hotplug/Linux/xen-hotplug-common.sh.in
index afb240f..d5d0b69 100644
--- a/tools/hotplug/Linux/xen-hotplug-common.sh.in
+++ b/tools/hotplug/Linux/xen-hotplug-common.sh.in
@@ -11,8 +11,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 dir=$(dirname "$0")
diff --git a/tools/hotplug/Linux/xen-network-common.sh 
b/tools/hotplug/Linux/xen-network-common.sh
index 3c63c55..92ffa60 100644
--- a/tools/hotplug/Linux/xen-network-common.sh
+++ b/tools/hotplug/Linux/xen-network-common.sh
@@ -11,8 +11,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 
diff --git a/tools/hotplug/Linux/xen-script-common.sh 
b/tools/hotplug/Linux/xen-script-common.sh
index f6841ac..370a50a 100644
--- a/tools/hotplug/Linux/xen-script-common.sh
+++ b/tools/hotplug/Linux/xen-script-common.sh
@@ -11,8 +11,7 @@
 # Lesser General Public License for more details.
 #
 # You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# License along with this library; If not, see <http://www.gnu.org/licenses/>.
 #
 
 
diff --git a/tools/libfsimage/ext2fs/fsys_ext2fs.c 
b/tools/libfsimage/ext2fs/fsys_ext2fs.c
index 75c4cbe..ba53ff4 100644
--- a/tools/libfsimage/ext2fs/fsys_ext2fs.c
+++ b/tools/libfsimage/ext2fs/fsys_ext2fs.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <fsimage_grub.h>
diff --git a/tools/libfsimage/fat/fat.h b/tools/libfsimage/fat/fat.h
index f72b72a..2abb430 100644
--- a/tools/libfsimage/fat/fat.h
+++ b/tools/libfsimage/fat/fat.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 
diff --git a/tools/libfsimage/fat/fsys_fat.c b/tools/libfsimage/fat/fsys_fat.c
index d22d243..b8129a8 100644
--- a/tools/libfsimage/fat/fsys_fat.c
+++ b/tools/libfsimage/fat/fsys_fat.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <limits.h>
diff --git a/tools/libfsimage/iso9660/fsys_iso9660.c 
b/tools/libfsimage/iso9660/fsys_iso9660.c
index b991cfc..5dbf100 100644
--- a/tools/libfsimage/iso9660/fsys_iso9660.c
+++ b/tools/libfsimage/iso9660/fsys_iso9660.c
@@ -15,8 +15,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  *  References:
diff --git a/tools/libfsimage/iso9660/iso9660.h 
b/tools/libfsimage/iso9660/iso9660.h
index 83d0019..4ea9b3e 100644
--- a/tools/libfsimage/iso9660/iso9660.h
+++ b/tools/libfsimage/iso9660/iso9660.h
@@ -15,8 +15,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  *  References:
diff --git a/tools/libfsimage/reiserfs/fsys_reiserfs.c 
b/tools/libfsimage/reiserfs/fsys_reiserfs.c
index 4aa9bfb..92c3b2b 100644
--- a/tools/libfsimage/reiserfs/fsys_reiserfs.c
+++ b/tools/libfsimage/reiserfs/fsys_reiserfs.c
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <fsimage_grub.h>
diff --git a/tools/libfsimage/ufs/fsys_ufs.c b/tools/libfsimage/ufs/fsys_ufs.c
index be51411..cf7e22a 100644
--- a/tools/libfsimage/ufs/fsys_ufs.c
+++ b/tools/libfsimage/ufs/fsys_ufs.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/xfs/fsys_xfs.c b/tools/libfsimage/xfs/fsys_xfs.c
index 0261a52..f39d096 100644
--- a/tools/libfsimage/xfs/fsys_xfs.c
+++ b/tools/libfsimage/xfs/fsys_xfs.c
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <fsimage_grub.h>
diff --git a/tools/libfsimage/xfs/xfs.h b/tools/libfsimage/xfs/xfs.h
index 02f8dcd..4069928 100644
--- a/tools/libfsimage/xfs/xfs.h
+++ b/tools/libfsimage/xfs/xfs.h
@@ -20,8 +20,7 @@
  *  other software, or any other product whatsoever.
  * 
  *  You should have received a copy of the GNU General Public License along
- *  with this program; if not, write the Free Software Foundation, Inc., 59
- *  Temple Place - Suite 330, Boston MA 02111-1307, USA.
+ *  with this program; If not, see <http://www.gnu.org/licenses/>.
  * 
  *  Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
  *  Mountain View, CA  94043, or:
diff --git a/tools/libfsimage/zfs/Makefile b/tools/libfsimage/zfs/Makefile
index 9fb0aab..4b9f131 100644
--- a/tools/libfsimage/zfs/Makefile
+++ b/tools/libfsimage/zfs/Makefile
@@ -13,8 +13,7 @@
 #  GNU General Public License for more details.
 #
 #  You should have received a copy of the GNU General Public License
-#  along with this program; if not, write to the Free Software
-#  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#  along with this program; If not, see <http://www.gnu.org/licenses/>.
 #
 
 # 
diff --git a/tools/libfsimage/zfs/filesys.h b/tools/libfsimage/zfs/filesys.h
index 1fae8e8..36cc720 100644
--- a/tools/libfsimage/zfs/filesys.h
+++ b/tools/libfsimage/zfs/filesys.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/fsi_zfs.c b/tools/libfsimage/zfs/fsi_zfs.c
index 05148bc..7514587 100644
--- a/tools/libfsimage/zfs/fsi_zfs.c
+++ b/tools/libfsimage/zfs/fsi_zfs.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/fsi_zfs.h b/tools/libfsimage/zfs/fsi_zfs.h
index c849147..fb4dc23 100644
--- a/tools/libfsimage/zfs/fsi_zfs.h
+++ b/tools/libfsimage/zfs/fsi_zfs.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/fsys_zfs.c b/tools/libfsimage/zfs/fsys_zfs.c
index 863232b..e881fbb 100644
--- a/tools/libfsimage/zfs/fsys_zfs.c
+++ b/tools/libfsimage/zfs/fsys_zfs.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/fsys_zfs.h b/tools/libfsimage/zfs/fsys_zfs.h
index 36aa1e7..5cd627d 100644
--- a/tools/libfsimage/zfs/fsys_zfs.h
+++ b/tools/libfsimage/zfs/fsys_zfs.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/mb_info.h b/tools/libfsimage/zfs/mb_info.h
index 1e1e63b..16e9013 100644
--- a/tools/libfsimage/zfs/mb_info.h
+++ b/tools/libfsimage/zfs/mb_info.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/tools/libfsimage/zfs/shared.h b/tools/libfsimage/zfs/shared.h
index 0bf6751..e4a239a 100644
--- a/tools/libfsimage/zfs/shared.h
+++ b/tools/libfsimage/zfs/shared.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/dmu.h 
b/tools/libfsimage/zfs/zfs-include/dmu.h
index 7faa708..b39a951 100644
--- a/tools/libfsimage/zfs/zfs-include/dmu.h
+++ b/tools/libfsimage/zfs/zfs-include/dmu.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/dmu_objset.h 
b/tools/libfsimage/zfs/zfs-include/dmu_objset.h
index 8d1cf8e..2680fcf 100644
--- a/tools/libfsimage/zfs/zfs-include/dmu_objset.h
+++ b/tools/libfsimage/zfs/zfs-include/dmu_objset.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/dnode.h 
b/tools/libfsimage/zfs/zfs-include/dnode.h
index 5f6e4bb..dd90a87 100644
--- a/tools/libfsimage/zfs/zfs-include/dnode.h
+++ b/tools/libfsimage/zfs/zfs-include/dnode.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/dsl_dataset.h 
b/tools/libfsimage/zfs/zfs-include/dsl_dataset.h
index a8c60c4..470b607 100644
--- a/tools/libfsimage/zfs/zfs-include/dsl_dataset.h
+++ b/tools/libfsimage/zfs/zfs-include/dsl_dataset.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/dsl_dir.h 
b/tools/libfsimage/zfs/zfs-include/dsl_dir.h
index 591e197..0e71b6b 100644
--- a/tools/libfsimage/zfs/zfs-include/dsl_dir.h
+++ b/tools/libfsimage/zfs/zfs-include/dsl_dir.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/sa_impl.h 
b/tools/libfsimage/zfs/zfs-include/sa_impl.h
index 4d93558..0679c93 100644
--- a/tools/libfsimage/zfs/zfs-include/sa_impl.h
+++ b/tools/libfsimage/zfs/zfs-include/sa_impl.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/spa.h 
b/tools/libfsimage/zfs/zfs-include/spa.h
index 4c943310..ee708ef 100644
--- a/tools/libfsimage/zfs/zfs-include/spa.h
+++ b/tools/libfsimage/zfs/zfs-include/spa.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/uberblock_impl.h 
b/tools/libfsimage/zfs/zfs-include/uberblock_impl.h
index 9e70ac0..282d3b9 100644
--- a/tools/libfsimage/zfs/zfs-include/uberblock_impl.h
+++ b/tools/libfsimage/zfs/zfs-include/uberblock_impl.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/vdev_impl.h 
b/tools/libfsimage/zfs/zfs-include/vdev_impl.h
index ba427dd..f3823b2 100644
--- a/tools/libfsimage/zfs/zfs-include/vdev_impl.h
+++ b/tools/libfsimage/zfs/zfs-include/vdev_impl.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zap_impl.h 
b/tools/libfsimage/zfs/zfs-include/zap_impl.h
index ebb57a6..7adfc34 100644
--- a/tools/libfsimage/zfs/zfs-include/zap_impl.h
+++ b/tools/libfsimage/zfs/zfs-include/zap_impl.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zap_leaf.h 
b/tools/libfsimage/zfs/zfs-include/zap_leaf.h
index 4ff3515..ecf3faa 100644
--- a/tools/libfsimage/zfs/zfs-include/zap_leaf.h
+++ b/tools/libfsimage/zfs/zfs-include/zap_leaf.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zfs.h 
b/tools/libfsimage/zfs/zfs-include/zfs.h
index c0887d5..592d23a 100644
--- a/tools/libfsimage/zfs/zfs-include/zfs.h
+++ b/tools/libfsimage/zfs/zfs-include/zfs.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zfs_acl.h 
b/tools/libfsimage/zfs/zfs-include/zfs_acl.h
index 77ebb8d..6a685e0 100644
--- a/tools/libfsimage/zfs/zfs-include/zfs_acl.h
+++ b/tools/libfsimage/zfs/zfs-include/zfs_acl.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zfs_znode.h 
b/tools/libfsimage/zfs/zfs-include/zfs_znode.h
index ea37c08..902c497 100644
--- a/tools/libfsimage/zfs/zfs-include/zfs_znode.h
+++ b/tools/libfsimage/zfs/zfs-include/zfs_znode.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zil.h 
b/tools/libfsimage/zfs/zfs-include/zil.h
index 87c1dc5..f34173c 100644
--- a/tools/libfsimage/zfs/zfs-include/zil.h
+++ b/tools/libfsimage/zfs/zfs-include/zil.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zio.h 
b/tools/libfsimage/zfs/zfs-include/zio.h
index 298017a..513f321 100644
--- a/tools/libfsimage/zfs/zfs-include/zio.h
+++ b/tools/libfsimage/zfs/zfs-include/zio.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs-include/zio_checksum.h 
b/tools/libfsimage/zfs/zfs-include/zio_checksum.h
index 28ba792..5f22f29 100644
--- a/tools/libfsimage/zfs/zfs-include/zio_checksum.h
+++ b/tools/libfsimage/zfs/zfs-include/zio_checksum.h
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs_fletcher.c 
b/tools/libfsimage/zfs/zfs_fletcher.c
index 34a034e..cc9e8c4 100644
--- a/tools/libfsimage/zfs/zfs_fletcher.c
+++ b/tools/libfsimage/zfs/zfs_fletcher.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs_lzjb.c b/tools/libfsimage/zfs/zfs_lzjb.c
index c617362..0b11eee 100644
--- a/tools/libfsimage/zfs/zfs_lzjb.c
+++ b/tools/libfsimage/zfs/zfs_lzjb.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libfsimage/zfs/zfs_sha256.c 
b/tools/libfsimage/zfs/zfs_sha256.c
index 393eaee..616fc0a 100644
--- a/tools/libfsimage/zfs/zfs_sha256.c
+++ b/tools/libfsimage/zfs/zfs_sha256.c
@@ -13,8 +13,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *  along with this program; If not, see <http://www.gnu.org/licenses/>.
  */
 /*
  * Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
diff --git a/tools/libvchan/init.c b/tools/libvchan/init.c
index de10817..77be4e7 100644
--- a/tools/libvchan/init.c
+++ b/tools/libvchan/init.c
@@ -21,8 +21,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
diff --git a/tools/libvchan/io.c b/tools/libvchan/io.c
index e66bc4e..8a9629b 100644
--- a/tools/libvchan/io.c
+++ b/tools/libvchan/io.c
@@ -21,8 +21,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
diff --git a/tools/libvchan/libxenvchan.h b/tools/libvchan/libxenvchan.h
index 6365d36..0944a0e 100644
--- a/tools/libvchan/libxenvchan.h
+++ b/tools/libvchan/libxenvchan.h
@@ -21,8 +21,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this library; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+ *  License along with this library; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
diff --git a/tools/libvchan/node-select.c b/tools/libvchan/node-select.c
index 6712df0..0394644 100644
--- a/tools/libvchan/node-select.c
+++ b/tools/libvchan/node-select.c
@@ -21,8 +21,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+ *  License along with this program; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
diff --git a/tools/libvchan/node.c b/tools/libvchan/node.c
index cab8368..f1638f0 100644
--- a/tools/libvchan/node.c
+++ b/tools/libvchan/node.c
@@ -21,8 +21,7 @@
  *  Lesser General Public License for more details.
  *
  *  You should have received a copy of the GNU Lesser General Public
- *  License along with this program; if not, write to the Free Software
- *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 
USA
+ *  License along with this program; If not, see 
<http://www.gnu.org/licenses/>.
  *
  * @section DESCRIPTION
  *
diff --git a/tools/libxc/include/xc_dom.h b/tools/libxc/include/xc_dom.h
index a7d059a..600aef6 100644
--- a/tools/libxc/include/xc_dom.h
+++ b/tools/libxc/include/xc_dom.h
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <xen/libelf/libelf.h>
diff --git a/tools/libxc/include/xenctrl.h b/tools/libxc/include/xenctrl.h
index ac7e5fd..de3c0ad 100644
--- a/tools/libxc/include/xenctrl.h
+++ b/tools/libxc/include/xenctrl.h
@@ -19,8 +19,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef XENCTRL_H
diff --git a/tools/libxc/include/xenctrlosdep.h 
b/tools/libxc/include/xenctrlosdep.h
index e97944b..5121d9b 100644
--- a/tools/libxc/include/xenctrlosdep.h
+++ b/tools/libxc/include/xenctrlosdep.h
@@ -15,8 +15,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/tools/libxc/include/xenguest.h b/tools/libxc/include/xenguest.h
index f837bde..1a1a185 100644
--- a/tools/libxc/include/xenguest.h
+++ b/tools/libxc/include/xenguest.h
@@ -16,8 +16,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef XENGUEST_H
diff --git a/tools/libxc/include/xentoollog.h b/tools/libxc/include/xentoollog.h
index 85d3da9..853e9c7 100644
--- a/tools/libxc/include/xentoollog.h
+++ b/tools/libxc/include/xentoollog.h
@@ -15,8 +15,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef XENTOOLLOG_H
diff --git a/tools/libxc/xc_altp2m.c b/tools/libxc/xc_altp2m.c
index 0f3c5ed..87a0fdf 100644
--- a/tools/libxc/xc_altp2m.c
+++ b/tools/libxc/xc_altp2m.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_compression.c b/tools/libxc/xc_compression.c
index d42e651..b1b16e8 100644
--- a/tools/libxc/xc_compression.c
+++ b/tools/libxc/xc_compression.c
@@ -22,8 +22,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
diff --git a/tools/libxc/xc_core.c b/tools/libxc/xc_core.c
index dfa424b..011336c 100644
--- a/tools/libxc/xc_core.c
+++ b/tools/libxc/xc_core.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 /*
diff --git a/tools/libxc/xc_core.h b/tools/libxc/xc_core.h
index 5867030..ffbe490 100644
--- a/tools/libxc/xc_core.h
+++ b/tools/libxc/xc_core.h
@@ -13,8 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
diff --git a/tools/libxc/xc_core_arm.c b/tools/libxc/xc_core_arm.c
index 57d4715..d8570fd 100644
--- a/tools/libxc/xc_core_arm.c
+++ b/tools/libxc/xc_core_arm.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2011 Citrix Systems
  *
diff --git a/tools/libxc/xc_core_arm.h b/tools/libxc/xc_core_arm.h
index 24781eb..162f7a7 100644
--- a/tools/libxc/xc_core_arm.h
+++ b/tools/libxc/xc_core_arm.h
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2012 Citrix Systems
  *
diff --git a/tools/libxc/xc_core_x86.c b/tools/libxc/xc_core_x86.c
index 93ebcbb..679e753 100644
--- a/tools/libxc/xc_core_x86.c
+++ b/tools/libxc/xc_core_x86.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2007 Isaku Yamahata <yamahata at valinux co jp>
  *                    VA Linux Systems Japan K.K.
diff --git a/tools/libxc/xc_core_x86.h b/tools/libxc/xc_core_x86.h
index d5e04e7..867146b 100644
--- a/tools/libxc/xc_core_x86.h
+++ b/tools/libxc/xc_core_x86.h
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2007 Isaku Yamahata <yamahata at valinux co jp>
  *                    VA Linux Systems Japan K.K.
diff --git a/tools/libxc/xc_cpu_hotplug.c b/tools/libxc/xc_cpu_hotplug.c
index e4659c0..58c2a0f 100644
--- a/tools/libxc/xc_cpu_hotplug.c
+++ b/tools/libxc/xc_cpu_hotplug.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
diff --git a/tools/libxc/xc_cpufeature.h b/tools/libxc/xc_cpufeature.h
index 66cc82e..c3ddc80 100644
--- a/tools/libxc/xc_cpufeature.h
+++ b/tools/libxc/xc_cpufeature.h
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef __LIBXC_CPUFEATURE_H
diff --git a/tools/libxc/xc_cpuid_x86.c b/tools/libxc/xc_cpuid_x86.c
index c97f91a..e146a3e 100644
--- a/tools/libxc/xc_cpuid_x86.c
+++ b/tools/libxc/xc_cpuid_x86.c
@@ -16,8 +16,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stdlib.h>
diff --git a/tools/libxc/xc_cpupool.c b/tools/libxc/xc_cpupool.c
index 828f234..c42273e 100644
--- a/tools/libxc/xc_cpupool.c
+++ b/tools/libxc/xc_cpupool.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2009, J Gross.
  */
diff --git a/tools/libxc/xc_csched.c b/tools/libxc/xc_csched.c
index 390c645..bf03bfc 100644
--- a/tools/libxc/xc_csched.c
+++ b/tools/libxc/xc_csched.c
@@ -18,8 +18,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_csched2.c b/tools/libxc/xc_csched2.c
index 6da6a46..ed99605 100644
--- a/tools/libxc/xc_csched2.c
+++ b/tools/libxc/xc_csched2.c
@@ -18,8 +18,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_dom_arm.c b/tools/libxc/xc_dom_arm.c
index 065debb..b00d667 100644
--- a/tools/libxc/xc_dom_arm.c
+++ b/tools/libxc/xc_dom_arm.c
@@ -12,8 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2011, Citrix Systems
  */
diff --git a/tools/libxc/xc_dom_armzimageloader.c 
b/tools/libxc/xc_dom_armzimageloader.c
index 2b28781..0df8c2a 100644
--- a/tools/libxc/xc_dom_armzimageloader.c
+++ b/tools/libxc/xc_dom_armzimageloader.c
@@ -16,8 +16,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
diff --git a/tools/libxc/xc_dom_binloader.c b/tools/libxc/xc_dom_binloader.c
index e1de5b5..740601a 100644
--- a/tools/libxc/xc_dom_binloader.c
+++ b/tools/libxc/xc_dom_binloader.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Some of the field descriptions were copied from "The Multiboot
  * Specification", Copyright 1995, 96 Bryan Ford <baford@xxxxxxxxxxx>,
diff --git a/tools/libxc/xc_dom_boot.c b/tools/libxc/xc_dom_boot.c
index f82db2d..8e06406 100644
--- a/tools/libxc/xc_dom_boot.c
+++ b/tools/libxc/xc_dom_boot.c
@@ -18,8 +18,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * written 2006 by Gerd Hoffmann <kraxel@xxxxxxx>.
  *
diff --git a/tools/libxc/xc_dom_bzimageloader.c 
b/tools/libxc/xc_dom_bzimageloader.c
index 3bb17dd..7fde42a 100644
--- a/tools/libxc/xc_dom_bzimageloader.c
+++ b/tools/libxc/xc_dom_bzimageloader.c
@@ -18,8 +18,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * written 2006 by Gerd Hoffmann <kraxel@xxxxxxx>.
  * written 2007 by Jeremy Fitzhardinge <jeremy@xxxxxxxxxxxxx>
diff --git a/tools/libxc/xc_dom_compat_linux.c 
b/tools/libxc/xc_dom_compat_linux.c
index 617cd96..a3abb99 100644
--- a/tools/libxc/xc_dom_compat_linux.c
+++ b/tools/libxc/xc_dom_compat_linux.c
@@ -16,8 +16,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * written 2006 by Gerd Hoffmann <kraxel@xxxxxxx>.
  *
diff --git a/tools/libxc/xc_dom_core.c b/tools/libxc/xc_dom_core.c
index b100ce1..8466677 100644
--- a/tools/libxc/xc_dom_core.c
+++ b/tools/libxc/xc_dom_core.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * written 2006 by Gerd Hoffmann <kraxel@xxxxxxx>.
  *
diff --git a/tools/libxc/xc_dom_elfloader.c b/tools/libxc/xc_dom_elfloader.c
index 6ce1062..66ea9d6 100644
--- a/tools/libxc/xc_dom_elfloader.c
+++ b/tools/libxc/xc_dom_elfloader.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * written 2006 by Gerd Hoffmann <kraxel@xxxxxxx>.
  *
diff --git a/tools/libxc/xc_dom_x86.c b/tools/libxc/xc_dom_x86.c
index 6a04399..3d40fa4 100644
--- a/tools/libxc/xc_dom_x86.c
+++ b/tools/libxc/xc_dom_x86.c
@@ -16,8 +16,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * written 2006 by Gerd Hoffmann <kraxel@xxxxxxx>.
  *
diff --git a/tools/libxc/xc_domain.c b/tools/libxc/xc_domain.c
index 582b0ae..2ee26fb 100644
--- a/tools/libxc/xc_domain.c
+++ b/tools/libxc/xc_domain.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2003, K A Fraser.
  */
diff --git a/tools/libxc/xc_efi.h b/tools/libxc/xc_efi.h
index 734da98..dbe105b 100644
--- a/tools/libxc/xc_efi.h
+++ b/tools/libxc/xc_efi.h
@@ -13,8 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (C) 1999 VA Linux Systems
  * Copyright (C) 1999 Walt Drummond <drummond@xxxxxxxxxxx>
diff --git a/tools/libxc/xc_elf.h b/tools/libxc/xc_elf.h
index cb616d6..acbc028 100644
--- a/tools/libxc/xc_elf.h
+++ b/tools/libxc/xc_elf.h
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <xen/libelf/elfstructs.h>
diff --git a/tools/libxc/xc_evtchn.c b/tools/libxc/xc_evtchn.c
index 2e0679e..15f0580 100644
--- a/tools/libxc/xc_evtchn.c
+++ b/tools/libxc/xc_evtchn.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2004, K A Fraser.
  */
diff --git a/tools/libxc/xc_flask.c b/tools/libxc/xc_flask.c
index e24a2e7..b533656 100644
--- a/tools/libxc/xc_flask.c
+++ b/tools/libxc/xc_flask.c
@@ -12,8 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_foreign_memory.c b/tools/libxc/xc_foreign_memory.c
index 43abf01..f42d140 100644
--- a/tools/libxc/xc_foreign_memory.c
+++ b/tools/libxc/xc_foreign_memory.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_freebsd.c b/tools/libxc/xc_freebsd.c
index 8e70a91..9dd48a3 100644
--- a/tools/libxc/xc_freebsd.c
+++ b/tools/libxc/xc_freebsd.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_freebsd_osdep.c b/tools/libxc/xc_freebsd_osdep.c
index 011112b..4d31a1e 100644
--- a/tools/libxc/xc_freebsd_osdep.c
+++ b/tools/libxc/xc_freebsd_osdep.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <errno.h>
diff --git a/tools/libxc/xc_gnttab.c b/tools/libxc/xc_gnttab.c
index 4076e47..60335d8 100644
--- a/tools/libxc/xc_gnttab.c
+++ b/tools/libxc/xc_gnttab.c
@@ -13,8 +13,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_hcall_buf.c b/tools/libxc/xc_hcall_buf.c
index 932b47c..6e3c958 100644
--- a/tools/libxc/xc_hcall_buf.c
+++ b/tools/libxc/xc_hcall_buf.c
@@ -12,8 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stdlib.h>
diff --git a/tools/libxc/xc_hvm_build_arm.c b/tools/libxc/xc_hvm_build_arm.c
index ff66689..14f7c45 100644
--- a/tools/libxc/xc_hvm_build_arm.c
+++ b/tools/libxc/xc_hvm_build_arm.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2011, Citrix Systems
  */
diff --git a/tools/libxc/xc_hvm_build_x86.c b/tools/libxc/xc_hvm_build_x86.c
index a6e9203..ec11f15 100644
--- a/tools/libxc/xc_hvm_build_x86.c
+++ b/tools/libxc/xc_hvm_build_x86.c
@@ -12,8 +12,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <stddef.h>
diff --git a/tools/libxc/xc_linux.c b/tools/libxc/xc_linux.c
index 6121d80..c67c71c 100644
--- a/tools/libxc/xc_linux.c
+++ b/tools/libxc/xc_linux.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_linux_osdep.c b/tools/libxc/xc_linux_osdep.c
index 2687424..e375428 100644
--- a/tools/libxc/xc_linux_osdep.c
+++ b/tools/libxc/xc_linux_osdep.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <errno.h>
diff --git a/tools/libxc/xc_mem_access.c b/tools/libxc/xc_mem_access.c
index 5cfa611..3634c39 100644
--- a/tools/libxc/xc_mem_access.c
+++ b/tools/libxc/xc_mem_access.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_mem_paging.c b/tools/libxc/xc_mem_paging.c
index 4aa48d6..28611f4 100644
--- a/tools/libxc/xc_mem_paging.c
+++ b/tools/libxc/xc_mem_paging.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_memshr.c b/tools/libxc/xc_memshr.c
index 0960c6d..deb0aa4 100644
--- a/tools/libxc/xc_memshr.c
+++ b/tools/libxc/xc_memshr.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_minios.c b/tools/libxc/xc_minios.c
index e703684..4f6498f 100644
--- a/tools/libxc/xc_minios.c
+++ b/tools/libxc/xc_minios.c
@@ -15,8 +15,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #undef NDEBUG
diff --git a/tools/libxc/xc_misc.c b/tools/libxc/xc_misc.c
index b827bbb..c613545 100644
--- a/tools/libxc/xc_misc.c
+++ b/tools/libxc/xc_misc.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_bitops.h"
diff --git a/tools/libxc/xc_monitor.c b/tools/libxc/xc_monitor.c
index d5f87da..065669c 100644
--- a/tools/libxc/xc_monitor.c
+++ b/tools/libxc/xc_monitor.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_netbsd.c b/tools/libxc/xc_netbsd.c
index 8a90ef3..54f1d7b 100644
--- a/tools/libxc/xc_netbsd.c
+++ b/tools/libxc/xc_netbsd.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_nomigrate.c b/tools/libxc/xc_nomigrate.c
index 76978a0..902429e 100644
--- a/tools/libxc/xc_nomigrate.c
+++ b/tools/libxc/xc_nomigrate.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  * Copyright (c) 2011, Citrix Systems
  */
diff --git a/tools/libxc/xc_offline_page.c b/tools/libxc/xc_offline_page.c
index c2a8230..7bb522f 100644
--- a/tools/libxc/xc_offline_page.c
+++ b/tools/libxc/xc_offline_page.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <inttypes.h>
diff --git a/tools/libxc/xc_pagetab.c b/tools/libxc/xc_pagetab.c
index 8525967..ec97890 100644
--- a/tools/libxc/xc_pagetab.c
+++ b/tools/libxc/xc_pagetab.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_physdev.c b/tools/libxc/xc_physdev.c
index 9b064b8..23108d6 100644
--- a/tools/libxc/xc_physdev.c
+++ b/tools/libxc/xc_physdev.c
@@ -17,8 +17,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_pm.c b/tools/libxc/xc_pm.c
index 5a7148e..5b38cf1 100644
--- a/tools/libxc/xc_pm.c
+++ b/tools/libxc/xc_pm.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  *
  */
 
diff --git a/tools/libxc/xc_private.c b/tools/libxc/xc_private.c
index 2ffebd9..7c39897 100644
--- a/tools/libxc/xc_private.c
+++ b/tools/libxc/xc_private.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_private.h b/tools/libxc/xc_private.h
index 247a408..2df1d59 100644
--- a/tools/libxc/xc_private.h
+++ b/tools/libxc/xc_private.h
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef XC_PRIVATE_H
diff --git a/tools/libxc/xc_resume.c b/tools/libxc/xc_resume.c
index e67bebd..87d4324 100644
--- a/tools/libxc/xc_resume.c
+++ b/tools/libxc/xc_resume.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_rt.c b/tools/libxc/xc_rt.c
index b2d1cc5..d59e5ce 100644
--- a/tools/libxc/xc_rt.c
+++ b/tools/libxc/xc_rt.c
@@ -19,8 +19,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_solaris.c b/tools/libxc/xc_solaris.c
index 7257a54..7e5d847 100644
--- a/tools/libxc/xc_solaris.c
+++ b/tools/libxc/xc_solaris.c
@@ -14,8 +14,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include "xc_private.h"
diff --git a/tools/libxc/xc_suspend.c b/tools/libxc/xc_suspend.c
index e22f4ac..bba36e7 100644
--- a/tools/libxc/xc_suspend.c
+++ b/tools/libxc/xc_suspend.c
@@ -10,8 +10,7 @@
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  
USA
+ * License along with this library; If not, see <http://www.gnu.org/licenses/>.
  */
 
 #include <unistd.h>
diff --git a/tools/libxc/xc_tbuf.c b/tools/libxc/xc_tbuf.c
index a4de491..695939a 100644
--- a/tools/libxc/xc_tbuf.c

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.