Commit ee79d52f2f69a353252e3e361724656723a1f797

Authored by Eric Lee
1 parent 10b91b2684
Exists in master

mmc: block: Support the fixed index for mmcblk with aliases nodes

Showing 1 changed file with 1 additions and 1 deletions Inline Diff

recipes-kernel/linux/linux-smarct335x_3.2.bb
1 inherit kernel 1 inherit kernel
2 require recipes-kernel/linux/linux.inc 2 require recipes-kernel/linux/linux.inc
3 3
4 DESCRIPTION = "Linux kernel for Embedian SMARC T335X Computer on Modules" 4 DESCRIPTION = "Linux kernel for Embedian SMARC T335X Computer on Modules"
5 KERNEL_IMAGETYPE = "zImage" 5 KERNEL_IMAGETYPE = "zImage"
6 COMPATIBLE_MACHINE = "smarct335x" 6 COMPATIBLE_MACHINE = "smarct335x"
7 DEFAULT_PREFERENCE = "-1" 7 DEFAULT_PREFERENCE = "-1"
8 8
9 S = "${WORKDIR}/git" 9 S = "${WORKDIR}/git"
10 10
11 # Stage the power management firmware before building the kernel 11 # Stage the power management firmware before building the kernel
12 DEPENDS += "am33x-cm3" 12 DEPENDS += "am33x-cm3"
13 13
14 BRANCH = "v3.2_SMARCT335xPSP_04.06.00.11" 14 BRANCH = "v3.2_SMARCT335xPSP_04.06.00.11"
15 #SRCREV = "${AUTOREV}" 15 #SRCREV = "${AUTOREV}"
16 # For rev. 00A0, uncomment out the following line. 16 # For rev. 00A0, uncomment out the following line.
17 #SRCREV = "5f08c606d2990bd6b45c5202e9ce6cf36143d84e" 17 #SRCREV = "5f08c606d2990bd6b45c5202e9ce6cf36143d84e"
18 18
19 # For rev. 00B0 19 # For rev. 00B0
20 SRCREV = "7cd774b27996addbbe6d9f350e001df4cbd67867" 20 SRCREV = "9f30bfb78dfd09b47c4a1dd9b59282812319792c"
21 21
22 SRC_URI = "git://git@git.embedian.com/developer/linux-smarc-t335x-v3.2.git;protocol=ssh;branch=${BRANCH} \ 22 SRC_URI = "git://git@git.embedian.com/developer/linux-smarc-t335x-v3.2.git;protocol=ssh;branch=${BRANCH} \
23 file://defconfig \ 23 file://defconfig \
24 " 24 "
25 25
26 26
27 PV = "3.2" 27 PV = "3.2"
28 MACHINE_KERNEL_PR_append = "c+gitr${SRCPV}" 28 MACHINE_KERNEL_PR_append = "c+gitr${SRCPV}"
29 29
30 # UNCOMMENT FOR VERBOSE BUILD OUTPUT: EXTRA_OEMAKE += "V=1" 30 # UNCOMMENT FOR VERBOSE BUILD OUTPUT: EXTRA_OEMAKE += "V=1"
31 31
32 # Copy the am33x-cm3 firmware if it is available 32 # Copy the am33x-cm3 firmware if it is available
33 do_configure_append() { 33 do_configure_append() {
34 if [ -e "${STAGING_DIR_HOST}/${base_libdir}/firmware/am335x-pm-firmware.bin" ] 34 if [ -e "${STAGING_DIR_HOST}/${base_libdir}/firmware/am335x-pm-firmware.bin" ]
35 then 35 then
36 cp "${STAGING_DIR_HOST}/${base_libdir}/firmware/am335x-pm-firmware.bin" "${S}/firmware" 36 cp "${STAGING_DIR_HOST}/${base_libdir}/firmware/am335x-pm-firmware.bin" "${S}/firmware"
37 fi 37 fi
38 } 38 }
39 39