Makefile (d0034a7a4ac7fae708146ac0059b9c47a1543f0d) | Makefile (14a832498c23cf480243222189066a8006182b9d) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2KBUILD_DEFCONFIG := mmu_defconfig 3 4UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" 5 | 1# SPDX-License-Identifier: GPL-2.0 2KBUILD_DEFCONFIG := mmu_defconfig 3 4UTS_SYSNAME = -DUTS_SYSNAME=\"Linux\" 5 |
6# What CPU vesion are we building for, and crack it open | 6# What CPU version are we building for, and crack it open |
7# as major.minor.rev 8CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER)) 9CPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1) 10CPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2) 11CPU_REV := $(shell echo $(CPU_VER) | cut -d '.' -f 3) 12 13export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV 14 --- 88 unchanged lines hidden --- | 7# as major.minor.rev 8CPU_VER := $(shell echo $(CONFIG_XILINX_MICROBLAZE0_HW_VER)) 9CPU_MAJOR := $(shell echo $(CPU_VER) | cut -d '.' -f 1) 10CPU_MINOR := $(shell echo $(CPU_VER) | cut -d '.' -f 2) 11CPU_REV := $(shell echo $(CPU_VER) | cut -d '.' -f 3) 12 13export CPU_VER CPU_MAJOR CPU_MINOR CPU_REV 14 --- 88 unchanged lines hidden --- |