Changeset 60582 in vbox
- Timestamp:
- Apr 19, 2016 5:02:41 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106716
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r60307 r60582 828 828 $(QUIET)$(RM) -f $@ [email protected] [email protected] 829 829 $(QUIET)$(TOOL_$(VBOX_GCC_TOOL)_CC) -E -P -x c -o [email protected] $< 830 $(QUIET)$(VBOX_IASLCMD) -tc -vs -p $@ [email protected] 830 $(QUIET)$(SED) "s/<NL>/\n/g" \ 831 --output [email protected] [email protected] 832 $(QUIET)$(VBOX_IASLCMD) -tc -vs -p $@ [email protected] 831 833 $(QUIET)$(MV) -f $@ [email protected] 832 834 $(QUIET)$(SED) "s/AmlCode/AmlCodeSsdtCpuHotPlug/g" \ 833 835 --output $@ [email protected] 834 $(QUIET)$(RM) -f [email protected] [email protected] 836 $(QUIET)$(RM) -f [email protected] [email protected] [email protected] 835 837 836 838 -
trunk/src/VBox/Devices/PC/vbox-cpuhotplug.dsl
r58415 r60582 43 43 { 44 44 45 #define GENERATE_CPU_OBJECT(id, sck, sckuid, cpu, cpuuid) 45 #define GENERATE_CPU_OBJECT(id, sck, sckuid, cpu, cpuuid)<NL> \ 46 46 Device (sck) \ 47 47 { \ … … 49 49 Name (_UID, sckuid) \ 50 50 \ 51 51 <NL> \ 52 52 Processor (cpu, /* Name */ \ 53 53 id, /* Id */ \ … … 59 59 Name (_UID, cpuuid) \ 60 60 Name (_PXM, 0x00) \ 61 61 <NL> \ 62 62 Method(_MAT, 0) \ 63 63 { \ … … 73 73 Return (APIC) \ 74 74 } \ 75 <NL> \ 75 76 Method(_STA) /* Used for device presence detection */ \ 76 77 { \ … … 84 85 } \ 85 86 } \ 87 <NL> \ 86 88 Method(_EJ0, 1) \ 87 89 { \
Note:
See TracChangeset
for help on using the changeset viewer.