diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-07-03 15:01:42 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-07-03 15:01:42 +0000 |
commit | e70e6f6848e13108551be2b1f38df7304f3df2c1 (patch) | |
tree | 9fc34847e4674e86d8dc94933729d136d4e18e13 /target/linux/ramips | |
parent | affb57ee273ee9968f155686101e993087532ae9 (diff) | |
download | mtk-20170518-e70e6f6848e13108551be2b1f38df7304f3df2c1.zip mtk-20170518-e70e6f6848e13108551be2b1f38df7304f3df2c1.tar.gz mtk-20170518-e70e6f6848e13108551be2b1f38df7304f3df2c1.tar.bz2 |
ramips: swap target check in image generation
SVN-Revision: 27379
Diffstat (limited to 'target/linux/ramips')
-rw-r--r-- | target/linux/ramips/image/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index 224e411..80268ab 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/image/Makefile @@ -18,13 +18,13 @@ ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) UIMAGE:=$(IMG_PREFIX)-uImage-initramfs endif -ifeq ($(CONFIG_RALINK_RT305X),y) +ifeq ($(CONFIG_RALINK_RT288X),y) define kernel_entry --a 0x80000000 -e 0x80000000 +-a 0x88000000 -e 0x88000000 endef else define kernel_entry --a 0x88000000 -e 0x88000000 +-a 0x80000000 -e 0x80000000 endef endif |