Changes in / [73d8600:bfa4ffa] in mainline
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.bzrignore
r73d8600 rbfa4ffa 7 7 *.so.* 8 8 Makefile.depend 9 Makefile.ag.depend 9 10 Makefile.common 10 11 Makefile.config … … 80 81 uspace/app/trace/trace 81 82 uspace/app/usbinfo/usbinfo 83 uspace/app/vcalc/vcalc 82 84 uspace/app/vdemo/vdemo 83 85 uspace/app/vlaunch/images.c … … 141 143 uspace/dist/app/trace 142 144 uspace/dist/app/usbinfo 145 uspace/dist/app/vcalc 143 146 uspace/dist/app/vdemo 144 147 uspace/dist/app/vlaunch … … 181 184 uspace/dist/drv/vhc/ 182 185 uspace/dist/drv/xtkbd/ 186 uspace/dist/drv/atkbd/ 183 187 uspace/dist/srv/apic 184 188 uspace/dist/srv/cdfs … … 233 237 uspace/drv/char/ps2mouse/ps2mouse 234 238 uspace/drv/char/xtkbd/xtkbd 239 uspace/drv/char/atkbd/atkbd 235 240 uspace/drv/fb/kfb/kfb 236 241 uspace/drv/root/root/root … … 336 341 kernel/arch/ia32/include/arch/context_struct.h 337 342 kernel/arch/ia32/include/arch/istate_struct.h 343 kernel/arch/ia32/include/arch/boot/memmap_struct.h 338 344 kernel/arch/ppc32/include/arch/context_struct.h 339 345 kernel/arch/ppc32/include/arch/fpu_context_struct.h … … 346 352 kernel/arch/ia64/include/arch/context_struct.h 347 353 kernel/arch/ia64/include/arch/istate_struct.h 354 kernel/genarch/include/genarch/multiboot/multiboot_info_struct.h 355 kernel/genarch/include/genarch/multiboot/multiboot_memmap_struct.h 348 356 uspace/lib/c/arch/sparc64/include/libarch/fibril_context.h 349 357 uspace/lib/c/arch/sparc64/include/libarch/istate_struct.h -
contrib/qemu/build-from-scratch.sh
r73d8600 rbfa4ffa 29 29 # 30 30 31 VERSION=2. 7.031 VERSION=2.8.0 32 32 BASENAME=qemu-${VERSION} 33 33 BASENAME_MASTER=qemu-master … … 36 36 URL=http://wiki.qemu-project.org/download/${TARBALL} 37 37 REPO=git://git.qemu.org/qemu.git 38 MD5=" 08d4d06d1cb598efecd796137f4844ab"38 MD5="17940dce063b6ce450a12e719a6c9c43" 39 39 40 40 if [ "$1" == "--master" ]; then … … 53 53 tar xvfj ${TARBALL} 54 54 cd ${SOURCEDIR} 55 patch -p 1 <../integratorcm_init_memsz.patch56 55 fi 57 56 58 ./configure --target-list=i386-softmmu,x86_64-softmmu,arm-softmmu,ppc-softmmu,sparc -softmmu,sparc64-softmmu,mips-softmmu,mipsel-softmmu --audio-drv-list=pa57 ./configure --target-list=i386-softmmu,x86_64-softmmu,arm-softmmu,ppc-softmmu,sparc64-softmmu,mips-softmmu,mipsel-softmmu --audio-drv-list=pa 59 58 make -j 4 60 59 sudo make install
Note:
See TracChangeset
for help on using the changeset viewer.