loader.c (5fbba56073828759b87d36cff3d31922a0e6f17e) | loader.c (18c86e2b9d85a89818f485c2cadafa6e3932e43a) |
---|---|
1/* 2 * QEMU Executable loader 3 * 4 * Copyright (c) 2006 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 28 unchanged lines hidden (view full) --- 37 * but WITHOUT ANY WARRANTY; without even the implied warranty of 38 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 39 * GNU General Public License for more details. 40 * 41 * You should have received a copy of the GNU General Public License along 42 * with this program; if not, see <http://www.gnu.org/licenses/>. 43 */ 44 | 1/* 2 * QEMU Executable loader 3 * 4 * Copyright (c) 2006 Fabrice Bellard 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 28 unchanged lines hidden (view full) --- 37 * but WITHOUT ANY WARRANTY; without even the implied warranty of 38 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 39 * GNU General Public License for more details. 40 * 41 * You should have received a copy of the GNU General Public License along 42 * with this program; if not, see <http://www.gnu.org/licenses/>. 43 */ 44 |
45#include "qemu/osdep.h" |
|
45#include "hw/hw.h" 46#include "disas/disas.h" 47#include "monitor/monitor.h" 48#include "sysemu/sysemu.h" 49#include "uboot_image.h" 50#include "hw/loader.h" 51#include "hw/nvram/fw_cfg.h" 52#include "exec/memory.h" --- 1036 unchanged lines hidden --- | 46#include "hw/hw.h" 47#include "disas/disas.h" 48#include "monitor/monitor.h" 49#include "sysemu/sysemu.h" 50#include "uboot_image.h" 51#include "hw/loader.h" 52#include "hw/nvram/fw_cfg.h" 53#include "exec/memory.h" --- 1036 unchanged lines hidden --- |