Building display feature kernel
From OMAPpedia
(Difference between revisions)
(Created page with '; Instructions: ; 1. Clone the tree git clone git://dev.omapzoom.org/pub/scm/axelcx/kernel-display.git ; 2. Checkout the lo-dss2 branch git checkout -b "lo-dss2-local" origin…') |
|||
| Line 11: | Line 11: | ||
; 4. Clean the prebuilt kernel | ; 4. Clean the prebuilt kernel | ||
| - | make | + | make CROSS_COMPILE=arm-none-linux-gnueabi- distclean |
; 5. Set a configuration | ; 5. Set a configuration | ||
| - | make | + | make CROSS_COMPILE=arm-none-linux-gnueabi- omap_4430sdp_defconfig |
; 6. Build the kernel Image | ; 6. Build the kernel Image | ||
| - | make | + | make CROSS_COMPILE=arm-none-linux-gnueabi- uImage |
; 7. Build the kernel modules (optional) | ; 7. Build the kernel modules (optional) | ||
| - | make | + | make CROSS_COMPILE=arm-none-linux-gnueabi- modules |
Revision as of 13:50, 21 January 2011
- Instructions
- 1. Clone the tree
git clone git://dev.omapzoom.org/pub/scm/axelcx/kernel-display.git
- 2. Checkout the lo-dss2 branch
git checkout -b "lo-dss2-local" origin/lo-dss2-15Jan
- 3. Go to kernel-display folder
cd kernel-display
- 4. Clean the prebuilt kernel
make CROSS_COMPILE=arm-none-linux-gnueabi- distclean
- 5. Set a configuration
make CROSS_COMPILE=arm-none-linux-gnueabi- omap_4430sdp_defconfig
- 6. Build the kernel Image
make CROSS_COMPILE=arm-none-linux-gnueabi- uImage
- 7. Build the kernel modules (optional)
make CROSS_COMPILE=arm-none-linux-gnueabi- modules