Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-03-01 | hw: move boards and other isolated files to hw/ARCH | Paolo Bonzini | 1 | -34/+0 | |
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | |||||
2013-03-01 | hw: include hw header files with full paths | Paolo Bonzini | 1 | -2/+2 | |
Done with this script: cd hw for i in `find . -name '*.h' | sed 's/^..//'`; do echo '\,^#.*include.*["<]'$i'[">], s,'$i',hw/&,' done | sed -i -f - `find . -type f` This is so that paths remain valid as files are moved. Instead, files in hw/dataplane are referenced with the relative path. We know they are not going to move to include/, and they are the only include files that are in subdirectories _and_ move. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> | |||||
2010-03-27 | Compile some MIPS devices only once | Blue Swirl | 1 | -1/+1 | |
Move CPU specific declarations to a separate file. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> | |||||
2010-03-16 | load_elf: replace the address addend by a translation function | Aurelien Jarno | 1 | -0/+34 | |
A few machines need to translate the ELF header addresses into physical addresses. Currently the only possibility is to add a value to the addresses. This patch replaces the addend argument by and a translation function and an opaque passed to the function. A NULL function does not translate the address. The patch also convert all machines that have an addend, simplify the PowerPC kernel loading and fix the MIPS kernel loading using this new feature. Other machines may benefit from this feature. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> |