| Anonymous | Login | Signup for a new account | 11-10-2008 11:20 PST |
| Main | My View | View Issues | Change Log | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Issue History ] [ Print ] | |||||||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | |||||||
| 0001535 | [buildroot] Architecture Specific | minor | always | 10-16-07 14:27 | 12-06-07 13:28 | |||||||
| Reporter | kevint | View Status | public | |||||||||
| Assigned To | buildroot | |||||||||||
| Priority | normal | Resolution | open | |||||||||
| Status | assigned | Product Version | ||||||||||
| Summary | 0001535: x86_64 kernel target | |||||||||||
| Description |
x86_64 variables not set for kernel build process in buildroot. I have been using this trivial patch for a few months now, and it seems like it could be useful now (considering building the kernel is now a default option, even if you select x86_64 architecture): diff -Naur buildroot/target/device/x86/Makefile.in buildroot-modified/target/device/x86/Makefile.in --- buildroot/target/device/x86/Makefile.in 2007-10-16 01:15:16.000000000 -0600 +++ buildroot-modified/target/device/x86/Makefile.in 2007-10-16 10:04:43.000000000 -0600 @@ -1,3 +1,7 @@ ifeq ($(strip $(BR2_i386)),y) include target/device/x86/i386/Makefile.in endif + +ifeq ($(strip $(BR2_x86_64)),y) +include target/device/x86/x86_64/Makefile.in +endif diff -Naur buildroot/target/device/x86/x86_64/Makefile.in buildroot-modified/target/device/x86/x86_64/Makefile.in --- buildroot/target/device/x86/x86_64/Makefile.in 1969-12-31 17:00:00.000000000 -0700 +++ buildroot-modified/target/device/x86/x86_64/Makefile.in 2007-10-16 10:04:12.000000000 -0600 @@ -0,0 +1,19 @@ +BR2_BOARD_PATH:=target/device/x86/x86_64 + +ifeq ($(strip $(BR2_PACKAGE_LINUX_KCONFIG)),) +ifndef LINUX26_KCONFIG +LINUX26_KCONFIG=$(BR2_BOARD_PATH)/linux26.config +endif +else +LINUX26_KCONFIG=$(strip $(BR2_PACKAGE_LINUX_KCONFIG)) +endif + +ifeq ($(strip $(BR2_PACKAGE_LINUX_FORMAT)),) +ifndef LINUX26_FORMAT +LINUX26_FORMAT=bzImage +endif +else +LINUX26_FORMAT=$(strip $(BR2_PACKAGE_LINUX_FORMAT)) +endif + +KERNEL_HEADERS_PATCH_DIR:=$(BR2_BOARD_PATH)/kernel-header-patches The linux26.config and busybox.config are not included in the patch, but they should be in the target/device/x86/x86_64 directory. |
|||||||||||
| Additional Information | ||||||||||||
| Attached Files | ||||||||||||
|
|
||||||||||||
| Copyright © 2000 - 2006 Mantis Group |